:root {
  --navy: #071c56;
  --purple: #625fc8;
  --purple-dark: #4a49a9;
  --lilac: #8c8bd2;
  --gold: #e0b62f;
  --beige: #f3eee8;
  --text: #101b43;
  --muted: #5d6581;
  --white: #fff;
  --max: 1320px;
  --shadow: 0 14px 35px rgba(29, 37, 91, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: #fff; font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.site-header {
  width: min(var(--max), calc(100% - 48px));
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--purple-dark); }
.brand img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; }
.brand span { display: grid; letter-spacing: .06em; }
.brand strong { font-size: 16px; }
.brand small { font-size: 12px; letter-spacing: .23em; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); font-size: 14px; font-weight: 700; }
.main-nav > a:not(.button) { padding-block: 12px; }
.main-nav > a:not(.button):hover { color: var(--purple); }
.nav-toggle { display: none; border: 0; background: none; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px; background: var(--navy); }

.button {
  min-height: 64px;
  padding: 13px 28px;
  border: 1px solid var(--purple);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), #5655bc);
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(98,95,200,.2);
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 24px rgba(98,95,200,.28); }
.button strong { font-size: 14px; }
.button small { margin-top: 3px; font-size: 11px; text-transform: none; }
.button-small { min-height: 48px; padding: 10px 22px; flex-direction: row; font-size: 13px; }
.button-outline { color: var(--purple-dark); background: rgba(255,255,255,.9); box-shadow: none; }

.hero {
  min-height: 660px;
  background: url("assets/images/banner-hero.png") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-content { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 20px 0 86px; }
.hero-content > * { max-width: 600px; }
.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 20px;
  border: 1px solid #aaa8e0;
  border-radius: 999px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
}
h1 { margin: 0; color: var(--navy); font-size: clamp(50px, 5.2vw, 78px); line-height: .96; letter-spacing: -.045em; text-transform: uppercase; }
h1 span { color: var(--purple); }
.script-copy { margin: 12px 0 30px; color: var(--purple); font-family: Georgia, serif; font-size: clamp(28px, 2.7vw, 43px); font-style: italic; font-weight: 700; }
.hero-description { margin: 0 0 32px; color: #303b63; font-size: 17px; line-height: 1.55; }
.hero-features { display: flex; gap: 22px; margin: 0 0 34px; }
.hero-features > div { display: flex; align-items: center; gap: 8px; }
.hero-features p { margin: 0; display: grid; font-size: 12px; }
.hero-features strong { white-space: nowrap; }
.hero-features small { margin-top: 2px; font-size: 10px; }
.feature-icon { width: 28px; height: 28px; flex: 0 0 28px; color: var(--purple); fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.hero-actions { display: flex; gap: 22px; }
.hero-actions .button { min-width: 220px; }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 58px 0; }
.section-heading { text-align: center; margin: 0 auto 34px; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(28px, 3vw, 42px); letter-spacing: -.035em; }
.section-heading h2 span { color: var(--purple); }
.section-heading p { margin: 10px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.benefits { padding-top: 38px; }
.benefit-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.info-card { min-height: 215px; padding: 28px 17px; text-align: center; border: 1px solid #ececf5; border-radius: 14px; box-shadow: 0 8px 24px rgba(22,35,84,.07); }
.info-card h3 { margin: 18px 0 10px; font-size: 15px; color: var(--navy); }
.info-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.line-icon { width: 48px; height: 48px; margin: 0 auto; color: #6666d1; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.info-card:hover .line-icon { color: #4f4fbd; transform: translateY(-2px); }

.process { padding-top: 28px; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 46px; position: relative; }
.steps::before { content: ""; position: absolute; top: 38px; left: 10%; right: 10%; border-top: 2px dotted #aaa8e0; z-index: -1; }
.steps article { text-align: center; background: #fff; }
.step-icon { width: 76px; height: 76px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #f6f5ff, #ecebfa); color: var(--purple); box-shadow: inset 0 0 0 1px rgba(98,95,200,.03); }
.step-icon svg { width: 39px; height: 39px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.steps b { display: block; color: var(--purple); font-size: 22px; }
.steps h3 { margin: 10px 0 5px; font-size: 14px; color: var(--navy); }
.steps p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.why-wrap { padding-top: 35px; }
.why-card { min-height: 345px; border-radius: 18px; overflow: hidden; color: white; background: linear-gradient(112deg, #514eb9 0%, #6965ce 62%, #5957bd 100%); display: grid; grid-template-columns: 1.05fr .9fr .82fr; align-items: center; }
.why-copy { padding: 45px 20px 45px 64px; }
.gold-label { display: inline-block; margin: 0 0 17px; color: var(--gold) !important; font-size: 12px !important; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.why-copy .gold-label { padding: 6px 12px; border: 1px solid var(--gold); border-radius: 999px; }
.why-copy h2 { margin: 0 0 22px; font-size: 33px; line-height: 1.18; }
.why-copy h2 em { color: #ffd34d; font-family: Georgia, serif; font-weight: 400; }
.why-copy > p:last-child { margin: 0; max-width: 430px; line-height: 1.6; }
.check-list { list-style: none; margin: 0; padding: 35px 24px; font-size: 15px; }
.check-list li { display: flex; align-items: center; gap: 11px; min-height: 39px; }
.check-list svg { width: 26px; height: 26px; flex: 0 0 26px; color: #ffd34d; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.why-photo { height: 100%; overflow: hidden; border-radius: 40% 0 0 40%; border-left: 3px solid var(--gold); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }

.audience { padding-top: 16px; }
.audience-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; align-items: start; }
.audience-grid article { min-width: 0; }
.audience-grid img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 10px 14px rgba(22,35,84,.08)); }

.hours-section { max-width: 900px; padding: 28px 0 10px; }
.hours-card { display: flex; align-items: center; gap: 25px; padding: 26px 32px; border-radius: 22px; color: #fff; background: linear-gradient(110deg, #36308b, #665ed0); box-shadow: 0 16px 32px rgba(49,45,137,.18); }
.hours-icon { width: 68px; height: 68px; display: grid; flex: 0 0 68px; place-items: center; border: 1px solid #e5bd43; border-radius: 50%; color: #ffd34d; }
.hours-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.hours-card .gold-label { margin: 0 0 7px; color: #ffd34d; }
.hours-card h2 { margin: 0; font-size: clamp(24px, 3vw, 32px); color: #fff; }
.hours-card h2 strong { color: #ffd34d; }
.hours-card > div > p:last-child { margin: 7px 0 0; color: #ececff; }

.faq { max-width: 900px; padding-top: 35px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid #e3e3f0; border-radius: 12px; background: #fff; box-shadow: 0 6px 18px rgba(24,36,84,.05); }
.faq-list summary { padding: 20px 24px; color: var(--navy); font-weight: 700; cursor: pointer; }
.faq-list details p { margin: 0; padding: 0 24px 22px; color: var(--muted); line-height: 1.6; }

.cta-section { padding-top: 28px; }
.cta-card { min-height: 250px; overflow: visible; border-radius: 28px; color: white; background: linear-gradient(100deg, #4f4cb5, #6a65ce); display: grid; grid-template-columns: 300px 1fr 1.25fr; align-items: center; }
.cta-card > img.cta-person { width: 100%; height: 300px; margin-top: -50px; align-self: end; object-fit: contain; object-position: center bottom; }
.cta-copy { padding: 25px 34px; }
.cta-copy h2 { margin: 0 0 15px; font-size: 31px; }
.cta-copy p { margin: 0; line-height: 1.55; }
.cta-action { padding: 25px 48px 25px 16px; }
.cta-white { min-height: 86px; padding: 15px 26px; display: flex; align-items: center; gap: 16px; border-radius: 12px; background: #fff; color: var(--purple-dark); box-shadow: var(--shadow); }
.cta-white > img { width: 40px; height: 40px; flex: 0 0 40px; }
.cta-button-copy { display: grid; text-align: left; }
.cta-white strong { font-size: 18px; text-transform: uppercase; }
.cta-white small { margin-top: 5px; color: var(--muted); font-size: 14px; }
.cta-action > p { display: flex; gap: 24px; margin: 18px 0 0; font-size: 12px; }
.cta-action > p span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.cta-action > p svg { width: 17px; height: 17px; color: #ffd34d; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }

.location { padding-top: 35px; }
.location-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 0 0 28px; }
.location-gallery figure { height: 365px; margin: 0; padding: 8px; display: grid; place-items: center; overflow: hidden; border: 1px solid #ececf5; border-radius: 22px; background: #fafaff; box-shadow: 0 10px 26px rgba(22, 35, 84, .08); }
.location-gallery img { width: 100%; height: 100%; object-fit: contain; border-radius: 15px; }
.location-grid { display: grid; grid-template-columns: 1.6fr .75fr; gap: 24px; }
.map-wrap { min-height: 430px; overflow: hidden; border-radius: 22px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 430px; border: 0; }
.location-card { padding: 46px 38px; border-radius: 22px; background: linear-gradient(155deg, var(--navy), #32388e); color: white; box-shadow: var(--shadow); }
.location-card .pin { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid #8e8ce4; border-radius: 50%; color: #ffd34d; }
.location-card .pin svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.location-card h3 { margin: 24px 0 14px; font-size: 26px; }
.location-card p { margin: 0 0 26px; color: #d6daf0; line-height: 1.65; }
.location-card .button { width: 100%; border-color: #8f8de6; }
.text-link { display: block; margin-top: 20px; text-align: center; color: #ffd34d; font-weight: 700; }

.site-footer { margin-top: 40px; padding: 48px max(24px, calc((100% - var(--max)) / 2)) 96px; border-top: 1px solid #eeeeF5; background: #fbfbfe; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.35fr 1.2fr 1fr; gap: 42px; align-items: start; }
.footer-brand img { width: 110px; height: 110px; object-fit: cover; border-radius: 14px; }
.footer-brand p, .footer-grid address, .footer-contact { color: var(--muted); font-size: 13px; line-height: 1.7; font-style: normal; }
.footer-grid strong { color: var(--navy); }
.footer-contact { display: grid; gap: 3px; }
.footer-contact a:hover { color: var(--purple); }
.footer-hours { display: flex; gap: 9px; margin: 15px 0 0; padding-top: 14px; border-top: 1px solid #e3e3ef; color: var(--muted); line-height: 1.45; }
.footer-hours svg { width: 22px; height: 22px; flex: 0 0 22px; margin-top: 1px; color: var(--purple); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-hours span { display: grid; }
.footer-hours strong { color: var(--navy); }
.payments p { display: flex; flex-wrap: wrap; gap: 10px; }
.payments p { align-items: center; margin: 15px 0 0; }
.payments img { width: auto; max-width: 76px; height: 30px; object-fit: contain; }
.payments img[alt="Visa"] { height: 23px; }
.payments img[alt="Mastercard"] { height: 35px; }
.payments img[alt="Elo"] { height: 27px; }
.payments img[alt="Pix"] { height: 28px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 18px; border-top: 1px solid #e5e5ef; color: #727892; font-size: 11px; }
.developer-credit { display: inline-flex; align-items: center; justify-content: flex-end; gap: 12px; color: #727892; }
.developer-credit img { width: 138px; height: 88px; object-fit: contain; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1000; width: 64px; height: 64px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; background: #25d366; box-shadow: 0 12px 30px rgba(13,90,48,.3); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 34px rgba(13,90,48,.38); }
.whatsapp-float img { width: 54px; height: 54px; }

@media (max-width: 1060px) {
  .main-nav { gap: 16px; font-size: 12px; }
  .brand span { display: none; }
  .hero { min-height: 620px; background-position: 54% center; }
  .hero-content > * { max-width: 540px; }
  .hero-features { gap: 14px; flex-wrap: wrap; max-width: 520px; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .why-card { grid-template-columns: 1.1fr .9fr; }
  .why-photo { display: none; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-card { grid-template-columns: 250px 1fr 1.2fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .site-header { height: 96px; width: min(100% - 32px, var(--max)); }
  .brand img { width: 78px; height: 78px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 88px; right: 0; left: 0; padding: 18px; border-radius: 14px; background: white; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .2s; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { text-align: center; }
  .hero { min-height: 760px; align-items: flex-start; background-position: 67% bottom; background-size: auto 49%; background-color: white; }
  .hero-content { width: min(100% - 32px, var(--max)); padding: 36px 0 350px; }
  .hero-content > * { max-width: none; }
  .eyebrow { font-size: 10px; padding: 7px 13px; letter-spacing: .17em; }
  h1 { font-size: clamp(43px, 14vw, 62px); }
  .script-copy { font-size: 27px; }
  .hero-description br { display: none; }
  .hero-features { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .button { min-width: 0; width: 100%; }
  .section { width: min(100% - 32px, var(--max)); padding: 43px 0; }
  .section-heading { margin-bottom: 25px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .info-card { min-height: 0; padding: 22px 12px; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps::before { display: none; }
  .steps article { display: grid; grid-template-columns: 64px 42px 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 12px; text-align: left; }
  .step-icon { grid-row: 1 / 3; width: 64px; height: 64px; margin: 0; }
  .step-icon svg { width: 32px; height: 32px; }
  .steps b { grid-row: 1 / 3; }
  .steps h3 { margin: 0; }
  .steps p { margin-top: 4px; }
  .why-card { display: block; }
  .why-copy { padding: 38px 26px 20px; }
  .why-copy h2 { font-size: 28px; }
  .check-list { padding: 12px 26px 34px; font-size: 15px; }
  .check-list li { margin: 9px 0; gap: 12px; line-height: 1.35; }
  .check-list svg { width: 30px; height: 30px; flex-basis: 30px; stroke-width: 1.5; }
  .audience-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .hours-section { padding-top: 20px; }
  .hours-card { align-items: flex-start; gap: 16px; padding: 24px 20px; }
  .hours-icon { width: 54px; height: 54px; flex-basis: 54px; }
  .hours-icon svg { width: 28px; height: 28px; }
  .hours-card h2 { font-size: 24px; line-height: 1.2; }
  .cta-card { grid-template-columns: 1fr; text-align: center; }
  .cta-card > img.cta-person { width: min(92%, 390px); height: 340px; margin: -46px auto 0; object-fit: contain; object-position: center bottom; }
  .cta-copy { padding-bottom: 10px; }
  .cta-action { padding: 10px 22px 30px; }
  .cta-white { justify-content: center; }
  .cta-action > p { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .location-gallery { grid-auto-columns: 84%; grid-auto-flow: column; grid-template-columns: none; overflow-x: auto; padding: 4px 2px 12px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .location-gallery figure { height: 430px; scroll-snap-align: start; }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 330px; }
  .location-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-bottom { flex-direction: column; }
  .developer-credit { justify-content: flex-start; flex-wrap: wrap; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 58px; height: 58px; }
  .whatsapp-float img { width: 49px; height: 49px; }
}

@media (max-width: 420px) {
  .benefit-grid, .audience-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
