:root {
  --bg: #04152e;
  --bg-2: #071e3d;
  --panel: rgba(8, 29, 58, 0.72);
  --panel-solid: #0a2347;
  --text: #f4f7fb;
  --muted: #c9d5e7;
  --gold: #b58b4d;
  --gold-soft: #d4b17a;
  --line: rgba(255,255,255,0.09);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(20,75,155,0.35), transparent 35%),
    linear-gradient(180deg, #04152e 0%, #02101f 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { width: min(900px, calc(100% - 32px)); }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 14, 30, 0.76);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: lowercase;
}
.brand-top, .brand-bottom {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.brand-top { font-size: 0.95rem; }
.brand-bottom { font-size: 0.78rem; color: var(--muted); }

.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.nav-cta:hover, .btn:hover { transform: translateY(-1px); }
.nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 14px 20px;
}

.hero {
  padding: 72px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 42px;
  align-items: center;
}
.eyebrow, .kicker {
  color: var(--gold-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.hero h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}
.hero h1 {
  margin-top: 16px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: .96;
  letter-spacing: -0.03em;
}
.hero h1 span { color: var(--gold-soft); }
.hero-subtitle {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 22px 0 0;
}
.hero-event-card {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-event-card > div,
.card,
.info-panel,
.quote-panel,
.form-card,
.pricing-box,
.contact-box,
.hero-visual {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-event-card > div {
  padding: 18px;
}
.hero-event-card strong,
.hero-event-card span { display: block; }
.hero-event-card strong { font-size: .82rem; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .09em; }
.hero-event-card span { margin-top: 6px; line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn {
  padding: 16px 24px;
  min-height: 54px;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), #c7a263); color: #fff; }
.btn-secondary { background: rgba(255,255,255,0.06); border: 1px solid var(--line); }
.btn-mercadopago { background: #00b1ea; color: white; }
.full { width: 100%; }
.microcopy, .small-note, .form-help, .footer-copy { color: var(--muted); }
.microcopy { margin-top: 16px; }
.hero-visual {
  padding: 14px;
}
.hero-visual img {
  border-radius: calc(var(--radius) - 10px);
  width: 100%;
}

.section {
  padding: 84px 0;
}
.section-dark {
  background: linear-gradient(180deg, rgba(10, 34, 67, 0.6), rgba(3, 17, 35, 0.6));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-intro { margin-bottom: 30px; }
.section-intro h2,
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; margin-top: 10px; }
.section-intro p, p { line-height: 1.75; }

.cards {
  display: grid;
  gap: 18px;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card { padding: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p, .card li, .info-panel li { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.align-start { align-items: start; }
.info-panel, .quote-panel, .form-card, .pricing-box, .contact-box {
  padding: 28px;
}
.info-panel ul, .plain-list, .check-list {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}
.check-list li, .plain-list li, .info-panel li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  line-height: 1.55;
}
.check-list li::before, .plain-list li::before, .info-panel li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: .55em;
}
.panel-note { margin-top: 18px; color: var(--text); }
.quote-panel blockquote {
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
}
.compact { height: fit-content; }

.pricing-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.price-wrap { text-align: right; }
.price-label {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
}
.price {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  margin: 10px 0 8px;
}
.price-regular { color: var(--muted); }

.section-form {
  background:
    radial-gradient(circle at top right, rgba(181,139,77,0.14), transparent 30%),
    linear-gradient(180deg, rgba(4,21,46,0.8), rgba(3,17,35,0.9));
}
.contact-box {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
}
.contact-box a { color: var(--gold-soft); font-size: 1.2rem; font-weight: 700; }
.form-card {
  display: grid;
  gap: 14px;
}
.form-card label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}
.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: rgba(212,177,122,.7);
  box-shadow: 0 0 0 4px rgba(181,139,77,0.16);
}
.form-help { margin: 0; font-size: .92rem; }

.faq-list {
  display: grid;
  gap: 14px;
}
details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 22px;
}
summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { margin: 12px 0 0; color: var(--muted); }

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-brand .brand-mark { width: 48px; height: 48px; }
.footer-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .cards.three,
  .cards.two,
  .pricing-box {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero-event-card {
    grid-template-columns: 1fr;
  }
  .price-wrap { text-align: left; }
}

@media (max-width: 640px) {
  .nav { min-height: 70px; }
  .nav-cta { padding: 12px 16px; font-size: .95rem; }
  .brand-mark { width: 46px; height: 46px; }
  .hero { padding-top: 40px; }
  .section { padding: 64px 0; }
  .hero-actions, .footer-grid, .footer-links { flex-direction: column; align-items: flex-start; }
  .btn, .nav-cta { width: auto; }
}

/* External links and highlights */
.logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  height: 36px;
  max-width: 160px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.highlight-link {
  font-weight: 800;
  color: var(--gold-soft);
}

.external-link,
.gold-link {
  color: var(--gold-soft);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 177, 122, 0.65);
  transition: color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.external-link:hover,
.gold-link:hover {
  color: #f0cf9b;
  border-bottom-color: rgba(240, 207, 155, 0.95);
  box-shadow: inset 0 -0.08em 0 rgba(212, 177, 122, 0.16);
}

.external-link:focus-visible,
.gold-link:focus-visible,
.nav-cta:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(212, 177, 122, 0.95);
  outline-offset: 3px;
  border-radius: 8px;
}

.whatsapp-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.hero-copy {
  min-width: 0;
}

.hero-subtitle strong,
p strong {
  color: var(--gold-soft);
}

.contact-box strong {
  display: block;
}

/* Mobile-first refinements */
@media (max-width: 960px) {
  .hero {
    padding: 40px 0 32px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    padding: 10px;
  }

  .hero-visual img {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
    line-height: 1.02;
  }

  .hero-subtitle,
  .section-intro p,
  p,
  .card p,
  .card li,
  .info-panel li,
  .microcopy,
  .small-note {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-event-card > div {
    padding: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .pricing-box,
  .footer-grid {
    gap: 18px;
  }

  .form-card,
  .info-panel,
  .quote-panel,
  .pricing-box,
  .contact-box,
  .card {
    padding: 22px;
  }

  .faq-list details {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 24px, 100%);
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 64px;
    gap: 12px;
  }

  .logo {
    height: 34px;
    max-width: 135px;
  }

  .footer-logo {
    height: 30px;
    max-width: 120px;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .hero {
    padding: 24px 0 22px;
  }

  .hero h1 {
    margin-top: 10px;
    letter-spacing: -0.04em;
  }

  .eyebrow, .kicker {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero-subtitle {
    margin-top: 16px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn, .nav-cta {
    min-height: 48px;
  }

  .btn {
    width: 100%;
    padding: 14px 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-event-card {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-event-card strong {
    font-size: 0.74rem;
  }

  .hero-event-card span {
    font-size: 0.98rem;
  }

  .section {
    padding: 50px 0;
  }

  h2, .section-intro h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .quote-panel blockquote {
    font-size: 1.45rem;
  }

  .check-list li, .plain-list li, .info-panel li {
    padding-left: 22px;
    margin-bottom: 12px;
  }

  .form-card {
    gap: 12px;
  }

  .form-card label {
    font-size: 0.95rem;
  }

  .form-card input,
  .form-card textarea {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 16px; /* prevents iOS zoom */
  }

  .contact-box {
    width: 100%;
    padding: 16px 18px;
  }

  .whatsapp-box {
    gap: 10px;
  }

  .whatsapp-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .footer-grid,
  .footer-links {
    width: 100%;
  }

  .footer-links {
    gap: 14px;
  }

  .price {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .price-wrap,
  .footer-links,
  .hero-actions {
    align-items: stretch;
  }
}
.instagram-link{
display:flex;
align-items:center;
gap:8px;
margin-top:6px;
}

.instagram-icon{
width:18px;
height:18px;
opacity:0.9;
}