:root {
  --purple-950: #210b3b;
  --purple-900: #311158;
  --purple-800: #451879;
  --purple-700: #6422a6;
  --lime: #c8ff36;
  --lime-dark: #a9e51a;
  --ink: #18131e;
  --muted: #6f6878;
  --paper: #f7f5f7;
  --white: #fff;
  --line: #e8e2ea;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(38, 13, 63, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Manrope", Arial, sans-serif; line-height: 1.55; overflow-x: hidden; }
a { color: inherit; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
section[id] { scroll-margin-top: 100px; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 12px 18px; background: var(--lime); color: var(--ink); border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 16px; }

body.intro-active { overflow: hidden; }
.intro-screen { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; background: var(--white); will-change: clip-path; animation: introExit 1.05s cubic-bezier(.76, 0, .24, 1) 1.4s forwards; }
.intro-brand { display: flex; flex-direction: column; align-items: center; gap: 22px; animation: introLogoIn .8s cubic-bezier(.2,.8,.2,1) both, introLogoOut .55s ease 1.25s forwards; }
.intro-brand img { display: block; width: clamp(230px, 28vw, 390px); height: auto; }
.intro-track { width: min(240px, 40vw); height: 4px; border-radius: 999px; background: #eee9f0; overflow: hidden; }
.intro-track span { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--purple-700), var(--lime)); transform-origin: left; animation: introProgress 1.15s cubic-bezier(.65,0,.35,1) .15s both; }

.site-header { position: fixed; top: 0; left: 0; z-index: 10; width: 100%; color: var(--purple-950); border-bottom: 1px solid #eee8f1; background: rgba(255, 255, 255, .98); transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease; }
.site-header { animation: headerDrop .7s cubic-bezier(.2,.75,.25,1) 1.62s both; }
.site-header.scrolled { background: rgba(255, 255, 255, .94); box-shadow: 0 12px 35px rgba(22, 7, 36, .12); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; gap: 30px; min-height: 118px; transition: min-height .35s ease; }
.site-header.scrolled .header-inner { min-height: 78px; }
.header-inner > p { flex: 1; margin: 0; color: var(--purple-900); text-align: center; font-size: .82rem; font-weight: 700; letter-spacing: .01em; opacity: .82; }
.brand { display: inline-flex; align-items: center; border-radius: 0; background: transparent; box-shadow: none; text-decoration: none; overflow: hidden; transition: transform .35s ease; }
.brand:hover { transform: scale(1.035); }
.brand-logo { display: block; width: 210px; height: 85px; object-fit: cover; transition: width .35s ease, height .35s ease; }
.site-header.scrolled .brand-logo { width: 152px; height: 62px; }
.site-header .button-light { color: var(--purple-950); background: var(--lime); box-shadow: 0 8px 24px rgba(169, 229, 26, .22); }
.site-header .button-light:hover { background: #d7ff67; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 56px; padding: 0 24px; border: 0; border-radius: 999px; text-decoration: none; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-3px); }
.button span { transition: transform .2s ease; }
.button:hover span { transform: translateX(4px); }
.button:focus-visible, input:focus-visible, a:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
input:focus-visible { outline-color: var(--purple-700); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .73rem; }
.button-light { color: var(--purple-900); background: var(--white); }
.button-accent { color: var(--purple-950); background: var(--lime); box-shadow: 0 12px 32px rgba(200, 255, 54, .18); }
.button-accent:hover { background: #d6ff66; }
.button-primary { color: var(--white); background: var(--purple-800); }
.button-primary:hover { background: var(--purple-700); }
.button-outline { color: var(--purple-800); border: 1px solid #cfc1d8; background: transparent; }

.hero { position: relative; isolation: isolate; min-height: 800px; padding: 150px 0 60px; color: var(--white); background: linear-gradient(118deg, var(--purple-950) 0%, #37135e 58%, #4d1b78 100%); overflow: hidden; animation: heroUnveil 1.15s cubic-bezier(.2,.75,.25,1) 1.25s both; }
.hero::before, .hero::after { display: none; }
.hero-shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, 545px); align-items: center; gap: 44px; }
.hero-copy { align-self: center; padding-top: 18px; }
.hero-copy > * { animation: riseIn .75s cubic-bezier(.2,.75,.25,1) both; }
.hero-copy > :nth-child(1) { animation-delay: 1.55s; }
.hero-copy > :nth-child(2) { animation: titleReveal .95s cubic-bezier(.16,1,.3,1) 1.66s both; }
.hero-copy > :nth-child(3) { animation-delay: 1.82s; }
.hero-copy > :nth-child(4) { animation-delay: 1.96s; }
.hero-copy > :nth-child(5) { animation-delay: 2.08s; }
.hero-copy h1 { max-width: 660px; margin: 18px 0 20px; font-size: clamp(3.2rem, 5.2vw, 5rem); line-height: 1; letter-spacing: -.055em; }
.hero-copy > p { max-width: 530px; margin: 0 0 30px; color: rgba(255,255,255,.84); font-size: 1.08rem; }
.microcopy { display: block; margin: 14px 0 0 18px; color: #c8bbd3; font-size: .74rem; }
.eyebrow { display: inline-block; color: var(--purple-700); text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 800; }
.eyebrow-light { color: var(--lime); }

.hero-prizes { position: relative; isolation: isolate; justify-self: end; width: min(46vw, 545px); min-height: 0; margin: 8px -18px -74px 0; animation: prizeEnter .9s cubic-bezier(.16,1,.3,1) 1.7s both; perspective: 1100px; }
.hero-prizes::before { content: ""; position: absolute; z-index: -1; inset: 12% -2% 4% 4%; background: radial-gradient(circle at 72% 82%, rgba(200,255,54,.42), transparent 27%), radial-gradient(circle at 48% 50%, rgba(118,36,188,.5), transparent 69%); filter: blur(28px); opacity: .86; }
.hero-prizes::after { content: ""; position: absolute; z-index: -1; right: 7%; bottom: 5%; left: 11%; height: 13%; border-radius: 50%; background: rgba(12,2,23,.55); filter: blur(26px); transform: rotate(-4deg); }
.hero-campaign-photo { display: block; width: 100%; height: auto; object-fit: contain; object-position: center; pointer-events: none; filter: drop-shadow(0 30px 28px rgba(12,2,23,.3)) brightness(1.04) saturate(1.01) contrast(1.01); -webkit-mask-image: radial-gradient(ellipse 14% 14% at 65% 11%, #000 0 52%, rgba(0,0,0,.92) 68%, transparent 100%), radial-gradient(ellipse 66% 60% at 52% 52%, #000 0 57%, rgba(0,0,0,.96) 64%, rgba(0,0,0,.7) 71%, rgba(0,0,0,.15) 78%, transparent 84%); mask-image: radial-gradient(ellipse 14% 14% at 65% 11%, #000 0 52%, rgba(0,0,0,.92) 68%, transparent 100%), radial-gradient(ellipse 66% 60% at 52% 52%, #000 0 57%, rgba(0,0,0,.96) 64%, rgba(0,0,0,.7) 71%, rgba(0,0,0,.15) 78%, transparent 84%); transform-origin: 52% 72%; animation: heroPrizeFloat 5.2s ease-in-out 2.65s infinite; }

.sponsorship { position: relative; z-index: 2; margin-top: -38px; padding: 0 0 34px; background: linear-gradient(to bottom, transparent 38px, var(--white) 38px); }
.sponsorship-card { display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch; min-height: 285px; border: 1px solid rgba(45,16,76,.08); border-radius: 34px; background: var(--white); box-shadow: 0 24px 70px rgba(38,13,63,.16); overflow: hidden; }
.sponsorship-logo-wrap { position: relative; display: grid; place-items: center; min-height: 285px; padding: 48px 42px 34px; background: radial-gradient(circle at 25% 20%, rgba(255,163,24,.2), transparent 31%), linear-gradient(145deg, #f7fbff, #f0f9e7); overflow: hidden; }
.sponsorship-logo-wrap::after { content: ""; position: absolute; right: -54px; bottom: -72px; width: 190px; aspect-ratio: 1; border: 34px solid rgba(100,34,166,.07); border-radius: 50%; }
.sponsorship-logo-wrap > span { position: absolute; top: 24px; left: 28px; z-index: 2; color: var(--purple-800); text-transform: uppercase; font-size: .64rem; font-weight: 800; letter-spacing: .12em; }
.sponsorship-logo-wrap img { position: relative; z-index: 1; display: block; width: min(100%, 335px); max-height: 185px; object-fit: contain; filter: drop-shadow(0 14px 20px rgba(22,96,155,.14)); }
.sponsorship-copy { display: flex; flex-direction: column; justify-content: center; padding: 44px 58px; }
.sponsorship-copy h2 { max-width: 650px; margin: 10px 0 15px; color: var(--purple-950); font-size: clamp(2rem, 3.7vw, 3.55rem); line-height: 1; letter-spacing: -.06em; }
.sponsorship-copy p { max-width: 650px; margin: 0; color: var(--muted); font-size: 1rem; }
.sponsorship-copy strong { color: var(--purple-800); }

.section { padding: 112px 0; }
.section-heading { max-width: 740px; margin: 0 auto 50px; text-align: center; }
.section-heading h2, .signup-copy h2, .plans h2 { margin: 12px 0 16px; font-size: clamp(2.2rem, 4.4vw, 4rem); line-height: 1.04; letter-spacing: -.06em; }
.section-heading p, .signup-copy > p { color: var(--muted); font-size: 1.02rem; }
.align-left { margin-left: 0; text-align: left; }
.prizes { background: var(--white); }
.featured-prize-card { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; min-height: 610px; color: var(--white); background: linear-gradient(135deg, var(--purple-950), #4d1b78 58%, #702ba7); border-radius: var(--radius-xl); box-shadow: 0 26px 70px rgba(38,13,63,.18); overflow: hidden; }
.featured-prize-copy { position: relative; z-index: 2; padding: 58px 0 58px 62px; }
.featured-prize-copy > span { display: inline-block; margin-bottom: 16px; padding: 8px 13px; color: var(--purple-950); background: var(--lime); border-radius: 999px; text-transform: uppercase; font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.featured-prize-copy h3 { margin: 0 0 18px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .94; letter-spacing: -.07em; }
.featured-prize-copy p { max-width: 360px; margin: 0 0 28px; color: #ddd0e8; font-size: 1rem; }
.featured-prize-media { display: grid; place-items: center; align-self: stretch; min-width: 0; margin: 22px; padding: 24px; background: #fff; border-radius: 28px; overflow: hidden; }
.featured-prize-media img { display: block; width: 100%; height: auto; max-height: 540px; object-fit: contain; }
.legal-note { margin: 20px 0 0; color: #837a88; text-align: center; font-size: .7rem; }

.mechanics { color: white; background: var(--purple-950); }
.mechanics-shell { position: relative; }
.mechanics .section-heading p { color: #cfc1da; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 34px; }
.step-card { min-height: 255px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.06); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.step-card:hover { transform: translateY(-7px); border-color: rgba(200,255,54,.5); background: rgba(255,255,255,.1); }
.step-card.highlighted:hover { background: #d5ff69; }
.step-card > span { display: inline-grid; place-items: center; width: 42px; height: 42px; color: var(--lime); border: 1px solid rgba(200,255,54,.5); border-radius: 50%; font-size: .76rem; font-weight: 800; }
.step-card h3 { margin: 46px 0 10px; font-size: 1.35rem; }
.step-card p { margin: 0; color: #cec1d7; }
.step-card.highlighted { color: var(--purple-950); border-color: var(--lime); background: var(--lime); }
.step-card.highlighted > span { color: var(--purple-950); border-color: var(--purple-950); }
.step-card.highlighted p { color: #44235d; }

.signup { background: #eee9f0; }
.signup-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 80px; }
.signup-copy { position: sticky; top: 108px; }
.trust-card { margin-top: 36px; padding: 24px; border-radius: var(--radius-md); background: var(--white); }
.trust-card p { margin: 6px 0 0; color: var(--muted); font-size: .84rem; }
.form-card { min-height: 620px; padding: 42px; border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow); transition: transform .35s ease, box-shadow .35s ease; }
.form-card:hover { transform: translateY(-5px); box-shadow: 0 32px 80px rgba(38, 13, 63, .18); }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.full { grid-column: 1 / -1; }
label, legend { font-size: .78rem; font-weight: 800; }
input[type="text"], input[type="tel"] { width: 100%; height: 54px; padding: 0 16px; color: var(--ink); border: 1px solid #dcd4e0; border-radius: 13px; background: #faf9fa; }
input::placeholder { color: #a59da8; }
input.invalid { border-color: #b42318; background: #fff8f7; }
.field-error { min-height: 0; color: #b42318; font-size: .74rem; font-weight: 700; }
.choice-group { display: flex; flex-flow: row wrap; padding: 0; border: 0; }
.choice-group legend { width: 100%; margin-bottom: 8px; }
.choice { position: relative; flex: 1; min-width: 145px; }
.choice input { position: absolute; opacity: 0; }
.choice span { display: grid; place-items: center; min-height: 48px; padding: 8px 14px; border: 1px solid #dcd4e0; border-radius: 12px; cursor: pointer; }
.choice input:checked + span { color: var(--purple-800); border-color: var(--purple-700); background: #f0e7f8; }
.choice input:focus-visible + span { outline: 3px solid var(--purple-700); outline-offset: 2px; }
.checks { margin-top: 6px; }
.checks label { display: flex; align-items: flex-start; gap: 10px; color: #5e5664; font-size: .78rem; font-weight: 500; }
.checks input { flex: 0 0 auto; width: 17px; height: 17px; accent-color: var(--purple-700); }
.checks a { color: var(--purple-700); font-weight: 800; }
.netlify-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit-error { grid-column: 1 / -1; min-height: 0; margin: 0; color: #b42318; text-align: center; font-size: .78rem; font-weight: 700; }
.full-button:disabled { opacity: .65; cursor: wait; transform: none; }
.full-button { grid-column: 1 / -1; width: 100%; margin-top: 5px; }
.form-footnote { grid-column: 1 / -1; margin: -6px 0 0; color: #716a76; text-align: center; font-size: .72rem; }
.success-state { padding: 65px 10px; text-align: center; }
.success-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 24px; color: var(--purple-950); background: var(--lime); border-radius: 50%; font-size: 2rem; font-weight: 800; }
.success-state h2 { margin: 12px auto 16px; max-width: 500px; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.05; letter-spacing: -.05em; }
.success-state > p { max-width: 510px; margin: 0 auto 28px; color: var(--muted); }
.success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }

.plans { padding: 30px 0; color: white; background: var(--paper); }
.plans-shell { position: relative; display: grid; grid-template-columns: minmax(0, .85fr) minmax(460px, 1fr); align-items: center; gap: 58px; min-height: 610px; padding: 60px; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--purple-800), var(--purple-950)); overflow: hidden; }
.plans-shell::before { content: ""; position: absolute; right: -8%; bottom: -50%; width: 420px; height: 420px; border: 70px solid rgba(200,255,54,.08); border-radius: 50%; }
.plans-copy { position: relative; z-index: 2; align-self: center; }
.plans h2 { position: relative; }
.plans p { color: #cfc3d8; }
.family-photo { position: relative; grid-column: 2; grid-row: 1; width: 100%; height: 460px; margin: 0; border-radius: 32px; background: #291044; box-shadow: 0 28px 70px rgba(20, 5, 34, .34); overflow: hidden; }
.family-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(33,11,59,.18), transparent 44%, transparent 70%, rgba(33,11,59,.12)); pointer-events: none; }
.family-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.015); transition: transform .8s cubic-bezier(.2,.75,.25,1), filter .8s ease; }
.family-photo:hover img { transform: scale(1.07); filter: saturate(1.06); }
.price-card { position: relative; z-index: 3; grid-column: 2; grid-row: 1; align-self: end; justify-self: start; display: flex; flex-direction: column; align-items: flex-start; width: min(320px, 78%); margin: 0 0 -22px -38px; padding: 28px; color: var(--purple-950); border-radius: var(--radius-lg); background: rgba(255,255,255,.97); box-shadow: 0 28px 70px rgba(20,5,34,.28); backdrop-filter: blur(10px); transition: transform .35s ease; }
.price-card:hover { transform: translateY(-7px) rotate(1deg); }
.price-card > span { font-size: .77rem; font-weight: 700; }
.price-card strong { margin: 2px 0 -5px; font-size: 3.8rem; line-height: 1; letter-spacing: -.08em; }
.price-card small { font-size: 1.2rem; }
.price-card sup { font-size: 1.8rem; }
.price-card .button { align-self: stretch; margin-top: 24px; }
.plan-warning { grid-column: 1 / -1; position: relative; z-index: 2; margin: 0; font-size: .72rem; }

.draw-info { background: var(--paper); }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.info-grid article { display: flex; flex-direction: column; gap: 12px; min-height: 145px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.info-grid span { color: var(--muted); font-size: .75rem; font-weight: 700; }
.info-grid strong { font-size: 1.05rem; }
.rules-box { display: grid; grid-template-columns: .8fr 1.5fr auto; align-items: center; gap: 30px; margin-top: 14px; padding: 30px; color: white; border-radius: var(--radius-md); background: var(--purple-900); }
.rules-box h3, .rules-box p { margin: 0; }
.rules-box p { color: #cfc1d9; font-size: .76rem; }
.text-link { color: var(--lime); white-space: nowrap; font-size: .75rem; font-weight: 800; }

.site-footer { padding: 70px 0 110px; color: white; background: #160724; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 60px; }
.brand-footer { margin-bottom: 15px; border-radius: 16px; background: var(--white); }
.brand-footer .brand-logo { width: 190px; height: 77px; }
.footer-grid p, .footer-grid a { display: block; color: #a99caf; font-size: .76rem; text-decoration: none; }
.footer-grid .brand-footer { display: inline-flex; width: 214px; height: 90px; margin: 0; padding: 5px 7px; border: 1px solid rgba(255,255,255,.08); border-radius: 19px; background: var(--white); box-shadow: 0 18px 44px rgba(0,0,0,.2); overflow: hidden; }
.footer-grid .brand-footer .brand-logo { width: 200px; height: 80px; object-fit: cover; }
.footer-grid > div:first-child > p { max-width: 310px; margin: 18px 0 0; color: #b7abbc; line-height: 1.65; }
.footer-grid > div:first-child > p::before { content: ""; display: block; width: 42px; height: 3px; margin-bottom: 14px; border-radius: 999px; background: var(--lime); }
.footer-grid a { margin: 0 0 11px; }
.footer-grid a:hover { color: var(--lime); }
.footer-grid h2 { margin: 0 0 17px; color: white; text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; }
.social-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid .social-link { display: inline-flex; align-items: center; gap: 11px; margin: 0; transition: color .2s ease, transform .2s ease; }
.footer-grid .social-link:hover { transform: translateX(4px); }
.social-icon { display: grid; flex: 0 0 auto; place-items: center; width: 32px; height: 32px; border-radius: 50%; box-shadow: 0 8px 18px rgba(0,0,0,.18); }
.social-icon img { display: block; width: 16px; height: 16px; }
.social-whatsapp { background: #20bd5a; }
.social-instagram { background: linear-gradient(135deg, #833ab4, #e1306c 55%, #fcaf45); }
.social-facebook { background: #1877f2; }
.footer-grid .site-link { display: inline-flex; align-items: center; gap: 6px; margin: 6px 0 0 43px; }
.footer-grid .site-link span { color: var(--lime); transition: transform .2s ease; }
.footer-grid .site-link:hover span { transform: translate(2px, -2px); }
.footer-bottom { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr); align-items: center; gap: 30px; margin-top: 55px; padding-top: 24px; color: #776c7c; border-top: 1px solid rgba(255,255,255,.08); }
.footer-signature { display: inline-flex; align-items: center; justify-self: start; gap: 8px; min-height: 52px; padding: 11px 16px; color: white; border: 1px solid rgba(200,255,54,.32); border-radius: 15px; background: linear-gradient(135deg,rgba(255,255,255,.08),rgba(200,255,54,.04)); box-shadow: 0 12px 30px rgba(0,0,0,.16); text-decoration: none; font-size: clamp(.78rem,1.15vw,1rem); font-weight: 600; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.footer-signature strong { color: var(--lime); font-size: 1.05em; }
.footer-signature b { color: var(--lime); font-size: 1.1em; transition: transform .2s ease; }
.footer-signature:hover { border-color: rgba(200,255,54,.72); background: linear-gradient(135deg,rgba(255,255,255,.11),rgba(200,255,54,.08)); transform: translateY(-2px); }
.footer-signature:hover b { transform: translate(3px,-3px); }
.footer-legal { color: #a99caf; text-align: right; font-size: .72rem; line-height: 1.55; }
.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 8; display: inline-flex; align-items: center; justify-content: flex-start; gap: 0; width: 54px; height: 54px; padding: 9px; color: white; border-radius: 999px; background: #20bd5a; box-shadow: 0 15px 38px rgba(9, 76, 38, .32); text-decoration: none; font-size: .76rem; font-weight: 800; isolation: isolate; overflow: hidden; animation: whatsappBounce 2.8s ease-in-out infinite; transition: width .28s cubic-bezier(.2,.75,.25,1), gap .28s ease, padding .28s ease, background .2s ease, opacity .2s ease, translate .2s ease, visibility .2s ease; }
.floating-whatsapp::before { content: ""; position: absolute; inset: -1px; z-index: -1; border: 2px solid rgba(37,211,102,.46); border-radius: inherit; animation: whatsappRing 2.8s ease-out infinite; }
.floating-whatsapp:hover, .floating-whatsapp:focus-visible { width: 190px; gap: 10px; padding: 9px 17px 9px 9px; color: white; background: #18aa4e; animation-play-state: paused; }
.floating-whatsapp:hover::before { animation-play-state: paused; }
.wa-icon { display: grid; flex: 0 0 36px; place-items: center; width: 36px; height: 36px; color: #118a42; border-radius: 50%; background: white; font-size: 1.2rem; line-height: 1; }
.wa-icon img { display: block; width: 21px; height: 21px; }
.wa-text { max-width: 0; opacity: 0; overflow: hidden; white-space: nowrap; transform: translateX(5px); transition: max-width .28s ease, opacity .2s ease, transform .28s ease; }
.floating-whatsapp:hover .wa-text, .floating-whatsapp:focus-visible .wa-text { max-width: 120px; opacity: 1; transform: translateX(0); }
.floating-whatsapp.is-hidden { visibility: hidden; opacity: 0; translate: 0 18px; pointer-events: none; animation: none; }

.motion-ready .reveal-target { opacity: 0; translate: 0 34px; transition: opacity .7s ease var(--reveal-delay, 0ms), translate .7s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms); }
.motion-ready .reveal-target.is-visible { opacity: 1; translate: 0 0; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes titleReveal {
  from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(72px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}

@keyframes prizeEnter {
  from { opacity: 0; transform: translateY(90px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes introLogoIn {
  from { opacity: 0; transform: translateY(30px) scale(.88); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes introLogoOut {
  to { opacity: 0; transform: translateY(-36px) scale(1.04); }
}

@keyframes introProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes introExit {
  from { clip-path: inset(0 0 0 0); }
  to { clip-path: inset(0 0 100% 0); visibility: hidden; }
}

@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroUnveil {
  from { filter: brightness(.55) saturate(.7); transform: scale(1.035); }
  to { filter: brightness(1) saturate(1); transform: scale(1); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes heroPrizeFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotateY(-1.5deg) rotateZ(-.25deg); }
  50% { transform: translate3d(0, -11px, 26px) rotateY(1.5deg) rotateZ(.25deg); }
}

@keyframes cardShine {
  0%, 50% { left: -70%; }
  72%, 100% { left: 140%; }
}

@keyframes orbDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(35px, -25px, 0) rotate(14deg); }
}

@keyframes whatsappBounce {
  0%, 18%, 46%, 68%, 100% { transform: translateY(0); }
  30% { transform: translateY(-13px); }
  56% { transform: translateY(-7px); }
}

@keyframes whatsappRing {
  0%, 28% { opacity: .75; transform: scale(1); }
  60%, 100% { opacity: 0; transform: scale(1.22); }
}

@media (max-width: 1024px) {
  .hero-shell, .signup-grid, .plans-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 155px; }
  .hero-shell { gap: 38px; }
  .hero-copy { padding-top: 0; }
  .hero-prizes { justify-self: center; width: min(100%, 500px); min-height: 0; margin: 0 auto -58px; }
  .sponsorship-card { grid-template-columns: 1fr; }
  .sponsorship-logo-wrap { min-height: 235px; }
  .sponsorship-copy { padding: 42px 48px 48px; text-align: center; }
  .sponsorship-copy h2, .sponsorship-copy p { margin-inline: auto; }
  .featured-prize-card { grid-template-columns: 1fr; }
  .featured-prize-copy { padding: 48px 48px 32px; text-align: center; }
  .featured-prize-copy p { margin-inline: auto; }
  .featured-prize-media { margin: 0 24px 24px; }
  .featured-prize-media img { max-height: 480px; }
  .steps { grid-template-columns: 1fr; }
  .signup-grid { gap: 40px; }
  .signup-copy { position: static; }
  .plans-shell { gap: 35px; padding: 48px; }
  .plans-copy { grid-column: 1; grid-row: auto; }
  .family-photo { grid-column: 1; grid-row: auto; height: 420px; }
  .price-card { grid-column: 1; grid-row: auto; align-self: auto; justify-self: center; width: min(410px, calc(100% - 28px)); margin: -125px 0 0; }
  .plan-warning { margin: 0; }
  .rules-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 82px; }
  .container { width: min(100% - 36px, 1180px); }
  section[id] { scroll-margin-top: 82px; }
  .section { padding: 78px 0; }
  .header-inner { min-height: 88px; }
  .site-header.scrolled .header-inner { min-height: 70px; }
  .brand { border-radius: 0; }
  .brand-footer { border-radius: 13px; }
  .footer-grid .brand-footer { width: 190px; height: 80px; border-radius: 16px; }
  .footer-grid .brand-footer .brand-logo { width: 176px; height: 70px; }
  .brand-logo { width: 138px; height: 56px; }
  .site-header.scrolled .brand-logo { width: 118px; height: 48px; }
  .header-inner > p { display: none; }
  .header-inner .button { margin-left: auto; }
  .hero { min-height: auto; padding: 112px 0 42px; }
  .hero-shell { gap: 28px; }
  .hero-copy h1 { margin: 14px 0 16px; font-size: clamp(2.65rem, 11.5vw, 3.35rem); line-height: 1.01; }
  .hero-copy > p { margin-bottom: 22px; font-size: .98rem; }
  .hero-copy .button { width: 100%; }
  .microcopy { text-align: center; }
  .hero-prizes { width: min(112%, 450px); min-height: 0; margin: -10px -6% -46px; }
  .sponsorship { margin-top: -24px; padding-bottom: 16px; background: linear-gradient(to bottom, transparent 24px, var(--white) 24px); }
  .sponsorship-card { border-radius: 26px; }
  .sponsorship-logo-wrap { min-height: 210px; padding: 50px 24px 24px; }
  .sponsorship-logo-wrap > span { top: 19px; left: 22px; }
  .sponsorship-logo-wrap img { width: min(100%, 280px); max-height: 145px; }
  .sponsorship-copy { padding: 32px 24px 38px; }
  .sponsorship-copy h2 { font-size: clamp(2rem, 10.5vw, 3rem); }
  .section-heading { margin-bottom: 34px; }
  .featured-prize-card { border-radius: 26px; }
  .featured-prize-copy { padding: 36px 24px 30px; }
  .featured-prize-copy > span { margin-bottom: 12px; }
  .featured-prize-copy h3 { margin-bottom: 14px; font-size: clamp(2.35rem, 12vw, 3.2rem); }
  .featured-prize-copy p { margin-bottom: 22px; }
  .featured-prize-copy .button { width: min(100%, 290px); }
  .featured-prize-media { margin: 0 18px 18px; padding: 16px; border-radius: 20px; }
  .featured-prize-media img { max-height: 420px; }
  .steps { gap: 10px; }
  .step-card { min-height: 225px; }
  .step-card h3 { margin-top: 34px; }
  .form-card { padding: 25px 18px; border-radius: 26px; }
  form { grid-template-columns: 1fr; }
  .form-row, .form-row.full { grid-column: 1; }
  .plans { padding: 13px 0; }
  .plans-shell { padding: 42px 24px; border-radius: 28px; }
  .family-photo { height: 350px; border-radius: 23px; }
  .price-card { width: calc(100% - 18px); margin-top: -90px; padding: 24px; }
  .price-card strong { font-size: 3.8rem; }
  .info-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .site-footer { padding-bottom: 92px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-signature { position: relative; justify-self: stretch; justify-content: center; flex-wrap: nowrap; gap: 6px; padding: 11px 34px 11px 12px; text-align: center; font-size: .76rem; }
  .footer-signature strong { white-space: nowrap; }
  .footer-signature b { position: absolute; right: 15px; }
  .footer-legal { text-align: center; }
  .floating-whatsapp, .floating-whatsapp:hover, .floating-whatsapp:focus-visible { right: 13px; bottom: 13px; width: 50px; height: 50px; gap: 0; padding: 7px; }
  .wa-text { display: none; }
}

@media (min-width: 1025px) and (max-height: 620px) {
  .header-inner { min-height: 82px; }
  .brand-logo { width: 146px; height: 59px; }
  .hero { padding: 104px 0 42px; }
  .hero-copy { padding-top: 8px; }
  .hero-copy h1 { margin: 10px 0 12px; font-size: clamp(2.8rem, 4.4vw, 3.35rem); line-height: .98; }
  .hero-copy > p { margin-bottom: 14px; font-size: .94rem; line-height: 1.45; }
  .hero-copy .button { min-height: 48px; }
  .microcopy { display: none; }
  .hero-prizes { width: 390px; margin-bottom: -62px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .motion-ready .reveal-target { opacity: 1; translate: none; }
  .intro-screen { display: none; }
  body.intro-active { overflow: auto; }
}
