:root {
  --green-950: #07271c;
  --green-900: #0b3828;
  --green-800: #154c38;
  --green-700: #27664d;
  --green-600: #3a7a5e;
  --mint: #e6eee7;
  --lime: #dce8c8;
  --orange: #b87642;
  --gold: #c49a5a;
  --champagne: #d8bd8a;
  --cream: #f3efe7;
  --paper: #fbfaf6;
  --ink: #14231b;
  --muted: #657169;
  --line: #dfe4dd;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(7, 39, 28, 0.13);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.announcement {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(216,189,138,.2);
  background: var(--green-950);
  color: #eadcbe;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .055em;
}
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 13px; }
.announcement-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); box-shadow: 0 0 0 5px rgba(216,189,138,.1); }
.announcement-separator { width: 1px; height: 14px; background: rgba(234,220,190,.25); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(7,39,28,.09);
  background: rgba(251,250,246,.94);
  box-shadow: 0 8px 30px rgba(7,39,28,.035);
  backdrop-filter: blur(20px);
}
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 188px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; color: #31443a; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -11px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}
.main-nav > a:not(.nav-cta):hover::after, .main-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}
.nav-cta { min-height: 47px; padding-inline: 21px; color: var(--white); background: var(--green-900); box-shadow: 0 14px 30px rgba(7,39,28,.16); }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.arrow-icon { width: 18px; height: 18px; }
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  background: #eef4ef;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--green-900); transition: transform 180ms ease; }

.hero-carousel { position: relative; min-height: 746px; overflow: hidden; background: var(--green-950); }
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 746px;
  padding: 78px 0 94px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(2%);
  transition: opacity .72s ease, transform .72s ease, visibility .72s;
}
.hero-slide.is-active { position: relative; z-index: 2; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent, black 48%, black);
}
.hero-slide-family { color: var(--white); background: radial-gradient(circle at 2% 6%,rgba(216,189,138,.14),transparent 31%), linear-gradient(132deg,#06231a,#0a3b2b 60%,#0c4430); }
.hero-slide-club { color: var(--green-950); background: radial-gradient(circle at 8% 0,rgba(216,189,138,.24),transparent 34%), linear-gradient(135deg,#f6f2e9,#ebe4d6); }
.hero-slide-club::after { opacity: .16; background-image: linear-gradient(rgba(7,39,28,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(7,39,28,.05) 1px,transparent 1px); mask-image: linear-gradient(to right,black,transparent 78%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 440px; height: 440px; right: -180px; top: -180px; border: 1px solid rgba(216,189,138,.16); background: rgba(216,189,138,.08); }
.hero-orb-two { width: 330px; height: 330px; left: 41%; bottom: -230px; background: rgba(220,232,200,.1); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,.82fr); align-items: center; gap: 76px; }
.hero-grid-club { grid-template-columns: minmax(0,.9fr) minmax(470px,1fr); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--green-700); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 1px; border-radius: 999px; background: linear-gradient(90deg,var(--orange),var(--gold)); }
.eyebrow-light { color: #e8d8b7; }
.slide-number { display: flex; align-items: center; gap: 9px; margin-bottom: 31px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.slide-number span { width: 42px; height: 1px; background: rgba(255,255,255,.22); }
.slide-number-dark { color: rgba(7,39,28,.48); }
.slide-number-dark span { background: rgba(7,39,28,.22); }
.hero-slide h1 { margin: 25px 0 23px; max-width: 690px; font-family: var(--font-display); font-size: clamp(47px,5.25vw,72px); line-height: 1.01; letter-spacing: -.048em; font-weight: 500; }
.hero-slide h1 em { display: block; margin-top: 9px; color: #e5d2aa; font-style: italic; font-weight: 400; }
.hero-lead { max-width: 630px; margin: 0; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button-primary { background: linear-gradient(135deg,#e6d4ae,var(--champagne)); color: var(--green-950); box-shadow: 0 15px 35px rgba(7,29,21,.18); }
.button-primary:hover { box-shadow: 0 18px 42px rgba(7,29,21,.25); }
.button-ghost { border-color: rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.06); }
.hero-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-trust > div { min-width: 0; display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border: 1px solid rgba(216,189,138,.3); border-radius: 12px; background: rgba(216,189,138,.08); color: #ead9b7; font-size: 11px; font-weight: 900; }
.hero-trust strong, .hero-trust span span { display: block; }
.hero-trust strong { color: var(--white); font-size: 12px; }
.hero-trust span span { margin-top: 2px; color: rgba(255,255,255,.55); font-size: 10px; }

.hero-visual { position: relative; min-height: 555px; }
.hero-photo-shell { position: absolute; inset: 0 4px 14px 34px; overflow: hidden; border: 1px solid rgba(234,216,183,.35); border-radius: 48% 48% 24px 24px; box-shadow: 0 38px 90px rgba(0,0,0,.3); }
.hero-photo-shell img { width: 100%; height: 100%; object-fit: cover; object-position: 79% center; transform: scale(1.02); }
.photo-gradient { position: absolute; inset: 0; background: linear-gradient(to top,rgba(4,34,20,.48),transparent 42%); }
.floating-card { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.64); background: rgba(251,250,246,.92); color: var(--ink); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.price-card { left: -28px; bottom: 62px; width: 218px; padding: 18px 20px; border-radius: 19px; }
.price-card > span { display: block; color: var(--muted); font-size: 11px; }
.price-card strong { display: block; margin: 4px 0 2px; color: var(--green-800); font-size: 30px; letter-spacing: -.04em; }
.price-card small { font-size: 12px; }
.support-card { right: -20px; top: 72px; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 15px; }
.support-card strong, .support-card span { display: block; }
.support-card strong { font-size: 12px; }
.support-card div span { margin-top: 2px; color: var(--muted); font-size: 10px; }
.pulse-dot { width: 11px; height: 11px; border-radius: 50%; background: #34b96b; box-shadow: 0 0 0 7px rgba(52,185,107,.13); }
.visual-stamp { position: absolute; right: -25px; bottom: 10px; width: 106px; height: 106px; display: grid; place-content: center; text-align: center; border-radius: 50%; border: 1px solid rgba(216,189,138,.48); background: var(--green-900); color: #e5d2aa; box-shadow: 0 20px 45px rgba(0,0,0,.24); transform: rotate(-7deg); }
.visual-stamp span { font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.visual-stamp strong { line-height: .85; font-size: 31px; font-weight: 400; }
.hero-footnote { position: absolute; z-index: 3; left: 0; right: 0; bottom: 29px; color: rgba(255,255,255,.46); font-size: 9px; }

.hero-copy-club h1 { max-width: 650px; }
.hero-copy-club h1 em { color: #9c713c; }
.hero-slide-club .hero-lead { color: #53645a; }
.button-luxury { background: var(--green-900); color: var(--white); box-shadow: 0 17px 38px rgba(7,39,28,.2); }
.button-luxury:hover { box-shadow: 0 21px 45px rgba(7,39,28,.27); }
.button-dark-outline { border-color: rgba(7,39,28,.3); background: rgba(255,255,255,.28); color: var(--green-950); }
.hero-trust-dark { border-color: rgba(7,39,28,.13); }
.hero-trust-dark .trust-icon { border-color: rgba(7,39,28,.16); background: rgba(7,39,28,.05); color: var(--green-800); }
.hero-trust-dark strong { color: var(--green-950); }
.hero-trust-dark span span { color: #6d776f; }
.club-line { position: absolute; border: 1px solid rgba(154,113,60,.22); border-radius: 50%; pointer-events: none; }
.club-line-one { width: 520px; height: 520px; top: -240px; right: -90px; }
.club-line-two { width: 330px; height: 330px; left: -180px; bottom: -230px; }
.club-showcase { position: relative; min-height: 555px; }
.club-card-main { position: absolute; inset: 12px 15px 26px 28px; overflow: hidden; padding: 34px; border: 1px solid rgba(216,189,138,.42); border-radius: 34px 34px 21px 21px; background: radial-gradient(circle at 92% 5%,rgba(216,189,138,.17),transparent 34%),linear-gradient(145deg,#0b3929,#061f17); color: var(--white); box-shadow: 0 40px 85px rgba(7,39,28,.25); }
.club-card-main::after { content: ""; position: absolute; width: 320px; height: 320px; right: -130px; bottom: -165px; border: 1px solid rgba(216,189,138,.15); border-radius: 50%; box-shadow: 0 0 0 60px rgba(216,189,138,.035),0 0 0 120px rgba(216,189,138,.025); }
.club-card-header { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.52); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.club-status { display: inline-flex; align-items: center; gap: 7px; color: #e6d2aa; }
.club-status i { width: 6px; height: 6px; border-radius: 50%; background: #8ebd91; box-shadow: 0 0 0 5px rgba(142,189,145,.1); }
.club-monogram { position: relative; z-index: 2; width: 76px; height: 76px; display: grid; place-items: center; margin-top: 61px; border: 1px solid rgba(216,189,138,.35); border-radius: 50%; color: #e4cfa5; font-family: var(--font-display); font-size: 42px; }
.club-monogram span { position: absolute; width: 10px; height: 10px; right: 5px; bottom: 9px; border-radius: 3px 3px 3px 0; background: var(--gold); transform: rotate(45deg); }
.club-card-main > p { position: relative; z-index: 2; margin: 26px 0 9px; color: #dfc99e; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.club-card-main h2 { position: relative; z-index: 2; max-width: 410px; margin: 0; font-family: var(--font-display); font-size: 35px; line-height: 1.08; letter-spacing: -.035em; font-weight: 500; }
.club-services { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 30px; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.1); }
.club-services > div { padding: 16px 14px; background: rgba(4,28,20,.72); }
.club-services span,.club-services strong,.club-services small { display: block; }
.club-services span { color: #c9a86d; font-size: 8px; font-weight: 900; }
.club-services strong { margin-top: 10px; font-size: 11px; }
.club-services small { margin-top: 4px; color: rgba(255,255,255,.45); font-size: 8px; }
.club-card-float { position: absolute; z-index: 3; border: 1px solid rgba(255,255,255,.72); background: rgba(251,250,246,.93); color: var(--green-950); box-shadow: 0 24px 55px rgba(7,39,28,.17); backdrop-filter: blur(18px); }
.club-card-access { top: 78px; right: -22px; width: 182px; padding: 16px 18px; border-radius: 15px; }
.club-card-access span,.club-card-access strong { display: block; }
.club-card-access span { color: var(--gold); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.club-card-access strong { margin-top: 6px; font-size: 11px; line-height: 1.4; }
.club-card-care { left: -15px; bottom: 62px; display: flex; align-items: center; gap: 12px; padding: 15px 17px; border-radius: 15px; }
.club-card-care strong,.club-card-care small { display: block; }
.club-card-care strong { font-size: 11px; }
.club-card-care small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.club-signature { position: absolute; z-index: 2; right: -4px; bottom: -10px; color: rgba(154,113,60,.1); font-family: var(--font-display); font-size: 170px; line-height: 1; }
.carousel-controls { position: absolute; z-index: 10; left: 50%; bottom: 18px; display: flex; align-items: center; justify-content: flex-end; gap: 6px; transform: translateX(-50%); pointer-events: none; }
.carousel-controls button { pointer-events: auto; cursor: pointer; }
.carousel-arrow { width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 11px; background: rgba(5,30,22,.86); color: var(--white); backdrop-filter: blur(15px); }
.carousel-arrow:hover { background: var(--green-800); }
.carousel-prev .arrow-icon { transform: rotate(180deg); }
.carousel-dots { height: 38px; display: flex; align-items: center; gap: 5px; padding: 0 13px; border-radius: 11px; background: rgba(5,30,22,.86); backdrop-filter: blur(15px); }
.carousel-dots button { width: 29px; height: 20px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; }
.carousel-dots button span { width: 29px; height: 2px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.27); }
.carousel-dots button.is-active span { background: var(--champagne); }
.carousel-pause { height: 38px; padding: 0 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 11px; background: rgba(5,30,22,.86); color: rgba(255,255,255,.72); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(15px); }

.proof-strip { border-bottom: 1px solid #decfab; background: #e9ddc4; color: var(--green-950); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-grid > div { min-height: 112px; display: flex; align-items: center; justify-content: center; gap: 15px; border-right: 1px solid rgba(6,44,27,.16); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { font-size: 34px; letter-spacing: -.05em; }
.proof-grid span { color: rgba(6,44,27,.72); font-size: 11px; font-weight: 720; line-height: 1.45; text-transform: uppercase; letter-spacing: .055em; }

.section { padding: 112px 0; }
.plans { background: radial-gradient(circle at 8% 86%,rgba(207,238,134,.14),transparent 28%), var(--cream); }
.section-heading h2, .quick-cta h2 { margin: 17px 0 0; color: var(--green-950); font-family: var(--font-display); font-size: clamp(37px,4vw,57px); line-height: 1.06; letter-spacing: -.04em; font-weight: 500; }
.split-heading { display: grid; grid-template-columns: 1.15fr .62fr; align-items: end; gap: 80px; }
.split-heading p { margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.age-selector-wrap { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 48px; padding: 15px 17px 15px 23px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.68); }
.age-selector-wrap > span { color: #415248; font-size: 13px; font-weight: 760; }
.age-selector { display: flex; gap: 6px; }
.age-selector button { min-height: 38px; padding: 0 16px; border: 1px solid transparent; border-radius: 999px; background: transparent; color: #627068; font-size: 12px; font-weight: 760; cursor: pointer; }
.age-selector button:hover, .age-selector button.active { border-color: var(--green-700); background: var(--green-800); color: var(--white); }
.plan-grid { display: grid; grid-template-columns: repeat(2,1fr); align-items: stretch; gap: 24px; margin-top: 25px; }
.plan-card { position: relative; padding: 39px; overflow: hidden; border: 1px solid #d9ded7; border-radius: 23px; background: rgba(255,255,255,.93); box-shadow: 0 22px 62px rgba(17,52,31,.055); }
.plan-card.featured { border-color: #bea374; box-shadow: 0 29px 75px rgba(8,61,37,.12); }
.recommended { position: absolute; top: 0; right: 0; padding: 11px 20px; border-radius: 0 0 0 15px; background: #ddc897; color: var(--green-950); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.plan-topline { display: flex; align-items: center; justify-content: space-between; }
.plan-label { color: var(--green-700); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.plan-code { color: #c7d2ca; font-size: 13px; font-weight: 800; }
.plan-card h3 { margin: 24px 0 10px; font-family: var(--font-display); font-size: 30px; line-height: 1.1; letter-spacing: -.035em; font-weight: 600; }
.plan-card > p { min-height: 52px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.plan-price { margin: 30px 0 27px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-price > span, .plan-price em { display: block; color: var(--muted); font-size: 10px; font-style: normal; }
.plan-price strong { display: flex; align-items: baseline; gap: 5px; margin: 2px 0 3px; color: var(--green-800); font-size: 46px; line-height: 1; letter-spacing: -.055em; }
.plan-price small { font-size: 13px; letter-spacing: 0; }
.plan-card ul { display: grid; gap: 12px; min-height: 210px; margin: 0 0 28px; padding: 0; list-style: none; }
.plan-card li { display: flex; align-items: flex-start; gap: 10px; color: #405048; font-size: 13px; line-height: 1.45; }
.check-icon { width: 20px; height: 20px; flex: 0 0 20px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green-700); }
.check-icon svg { width: 14px; height: 14px; }
.button-outline { border-color: #9ab0a1; color: var(--green-800); background: transparent; }
.button-outline:hover { border-color: var(--green-800); background: #eef5ef; }
.full-button { width: 100%; }
.plans-note { margin: 24px auto 0; color: var(--muted); text-align: center; font-size: 11px; }

.quick-cta { padding: 58px 0; background: var(--white); }
.quick-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 42px 48px; border: 1px solid #e3ddce; border-radius: 23px; background: linear-gradient(135deg,#edf2e9,#f7f3ea); box-shadow: 0 22px 55px rgba(7,39,28,.05); }
.quick-cta span { color: var(--green-700); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.quick-cta h2 { font-size: clamp(28px,4vw,42px); }
.button-whatsapp { flex: 0 0 auto; background: #179847; color: var(--white); box-shadow: 0 15px 35px rgba(23,152,71,.2); }
.button-whatsapp svg, .floating-whatsapp svg { width: 21px; height: 21px; }
.floating-whatsapp { position: fixed; z-index: 60; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 19px; border: 3px solid var(--white); border-radius: 999px; background: #179847; color: var(--white); box-shadow: 0 14px 35px rgba(7,70,30,.3); font-size: 12px; font-weight: 850; }

.benefits {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--green-950), #0a472a 72%, #0d5130);
  color: var(--white);
}
.benefit-orb { position: absolute; width: 540px; height: 540px; right: -180px; top: -240px; border: 1px solid rgba(207,238,134,.14); border-radius: 50%; box-shadow: inset 0 0 110px rgba(207,238,134,.08); }
.benefit-orb::after { content: ""; position: absolute; inset: 80px; border: 1px solid rgba(207,238,134,.12); border-radius: inherit; }
.benefits-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 70px; }
.benefits-heading h2 { margin: 17px 0 0; color: var(--white); font-family: var(--font-display); font-size: clamp(38px,4.5vw,60px); line-height: 1.05; letter-spacing: -.042em; font-weight: 500; }
.benefits-heading h2 em { color: var(--lime); font-style: normal; font-weight: 550; }
.benefits-heading > p { margin: 0 0 5px; color: rgba(255,255,255,.64); font-size: 16px; line-height: 1.75; }
.benefits-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.16fr 1fr 1fr; grid-template-rows: auto auto; gap: 17px; margin-top: 54px; }
.benefit-card { min-height: 262px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.06); backdrop-filter: blur(14px); }
.benefit-card:hover { border-color: rgba(207,238,134,.35); background: rgba(255,255,255,.085); }
.benefit-main { grid-row: span 2; min-height: 541px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top,rgba(207,238,134,.12),rgba(255,255,255,.04)); }
.benefit-icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: auto; border: 1px solid rgba(207,238,134,.34); border-radius: 20px; background: rgba(207,238,134,.1); color: var(--lime); font-size: 18px; font-weight: 900; letter-spacing: -.04em; }
.benefit-card > span { color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.benefit-card h3 { margin: 16px 0 12px; font-family: var(--font-display); font-size: 27px; letter-spacing: -.035em; font-weight: 600; }
.benefit-main h3 { max-width: 340px; font-size: 37px; line-height: 1.05; }
.benefit-card p { margin: 0; color: rgba(255,255,255,.61); font-size: 14px; line-height: 1.7; }
.benefit-signal { display: flex; align-items: center; gap: 9px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.76); font-size: 11px; font-weight: 750; }
.benefit-signal span { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(207,238,134,.1); }
.benefit-action { display: flex; flex-direction: column; justify-content: center; background: var(--lime); color: var(--green-950); }
.benefit-action > span { color: var(--green-700); }
.benefit-action h3 { max-width: 350px; font-size: 27px; }
.benefit-action button { display: inline-flex; align-items: center; gap: 9px; width: max-content; margin-top: 21px; padding: 0; border: 0; background: transparent; color: var(--green-950); font-size: 12px; font-weight: 900; cursor: pointer; }
.benefits-note { position: relative; z-index: 1; margin: 22px 0 0; color: rgba(255,255,255,.42); font-size: 10px; text-align: right; }

.human-way { background: var(--paper); }
.human-way-grid { display: grid; grid-template-columns: .94fr 1fr; align-items: center; gap: 96px; }
.care-interface { position: relative; min-height: 580px; overflow: hidden; padding: 29px; border: 1px solid #cbdacf; border-radius: 32px; background: radial-gradient(circle at 50% 44%,rgba(207,238,134,.32),transparent 34%), linear-gradient(145deg,#eef5ec,#f9f8f2); box-shadow: 0 28px 80px rgba(11,67,40,.11); }
.care-interface::before { content: ""; position: absolute; inset: 78px -80px auto; height: 1px; background: #d8e3da; box-shadow: 0 100px #d8e3da, 0 200px #d8e3da, 0 300px #d8e3da; opacity: .6; }
.interface-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: #53635a; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.interface-top > div { display: flex; align-items: center; gap: 9px; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #42b86e; box-shadow: 0 0 0 6px rgba(66,184,110,.12); }
.protection-ring { position: relative; width: 360px; height: 360px; margin: 43px auto 20px; }
.ring-one, .ring-two { position: absolute; border-radius: 50%; border: 1px solid rgba(13,81,48,.18); }
.ring-one { inset: 0; }
.ring-two { inset: 50px; border-style: dashed; animation: ring-spin 26s linear infinite; }
.ring-core { position: absolute; inset: 108px; display: grid; place-items: center; border: 1px solid rgba(13,81,48,.16); border-radius: 50%; background: var(--white); color: var(--green-800); box-shadow: 0 22px 45px rgba(8,61,37,.14); font-family: Georgia,serif; font-size: 76px; font-weight: 700; }
.ring-core::after { content: ""; position: absolute; width: 17px; height: 17px; top: 29px; right: 38px; border-radius: 5px 5px 5px 0; background: linear-gradient(135deg,var(--orange),var(--gold)); transform: rotate(45deg); }
.ring-label { position: absolute; padding: 8px 12px; border: 1px solid #d6e2d8; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--green-700); box-shadow: 0 8px 20px rgba(8,61,37,.07); font-size: 9px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.ring-label-one { top: 42px; left: -5px; }
.ring-label-two { top: 98px; right: -10px; }
.ring-label-three { bottom: 39px; left: 3px; }
.interface-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.interface-stats > div { padding: 15px; border: 1px solid #d5e0d7; border-radius: 14px; background: rgba(255,255,255,.75); }
.interface-stats strong, .interface-stats span { display: block; }
.interface-stats strong { color: var(--orange); font-size: 11px; }
.interface-stats span { margin-top: 6px; color: #53635a; font-size: 9px; font-weight: 750; line-height: 1.4; text-transform: uppercase; letter-spacing: .05em; }
@keyframes ring-spin { to { transform: rotate(360deg); } }
.human-way-copy h2, .centered-heading h2, .faq-intro h2 { margin: 18px 0 24px; color: var(--green-950); font-family: var(--font-display); font-size: clamp(38px,4.3vw,59px); line-height: 1.05; letter-spacing: -.043em; font-weight: 500; }
.human-way-copy > p { margin: 0 0 15px; color: var(--muted); font-size: 16px; line-height: 1.78; }
.values-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; margin-top: 36px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.values-list > div { min-height: 145px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-list span { display: block; margin-bottom: 14px; color: var(--orange); font-size: 10px; font-weight: 850; }
.values-list strong { font-size: 14px; }
.values-list p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.how { background: #eef4ed; }
.centered-heading { max-width: 770px; margin: 0 auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading p { margin: 0 auto; max-width: 610px; color: var(--muted); line-height: 1.7; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.steps-grid article { position: relative; min-height: 285px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: rgba(255,255,255,.82); }
.steps-grid article:hover { box-shadow: 0 22px 50px rgba(8,61,37,.08); transform: translateY(-3px); transition: .2s ease; }
.steps-grid article > span { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.step-line { width: 54px; height: 2px; margin: 28px 0 46px; background: linear-gradient(90deg,var(--green-700),transparent); }
.steps-grid h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.03em; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.68; }

.quote-section { position: relative; overflow: hidden; background: var(--green-950); color: var(--white); }
.quote-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(1px); }
.quote-glow-one { width: 440px; height: 440px; top: -230px; right: 8%; background: rgba(207,238,134,.1); }
.quote-glow-two { width: 340px; height: 340px; bottom: -220px; left: -100px; background: rgba(242,123,22,.08); }
.quote-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .72fr 1.18fr; align-items: start; gap: 76px; }
.quote-intro { position: sticky; top: 120px; }
.quote-intro h2 { margin: 19px 0 22px; color: var(--white); font-family: var(--font-display); font-size: clamp(40px,4.4vw,61px); line-height: 1.03; letter-spacing: -.045em; font-weight: 500; }
.quote-intro > p { margin: 0; color: rgba(255,255,255,.63); font-size: 16px; line-height: 1.75; }
.summary-preview { margin-top: 35px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 21px; background: rgba(255,255,255,.055); }
.summary-title { display: flex; align-items: center; gap: 10px; color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.summary-preview dl { display: grid; gap: 0; margin: 20px 0 0; }
.summary-preview dl div { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.summary-preview dt { color: rgba(255,255,255,.45); font-size: 10px; }
.summary-preview dd { margin: 0; color: var(--white); font-size: 11px; font-weight: 700; text-align: right; }
.summary-secure { display: flex; align-items: flex-start; gap: 8px; margin-top: 17px; color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.5; }
.summary-secure span { color: var(--lime); }
.direct-contact { display: flex; align-items: center; gap: 14px; width: max-content; margin-top: 25px; }
.direct-contact > svg { width: 39px; height: 39px; padding: 8px; border-radius: 50%; background: #179847; }
.direct-contact small, .direct-contact strong { display: block; }
.direct-contact small { color: rgba(255,255,255,.48); font-size: 9px; }
.direct-contact strong { margin-top: 2px; font-size: 13px; }

.quote-form { padding: 39px; border-radius: 30px; background: var(--white); color: var(--ink); box-shadow: 0 36px 80px rgba(0,0,0,.22); }
.form-heading > span { color: var(--green-700); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.form-heading h3 { margin: 9px 0 0; font-size: 29px; letter-spacing: -.035em; }
.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 31px; }
.field-grid label > span { display: block; margin: 0 0 8px; color: #435148; font-size: 10px; font-weight: 800; }
.field-grid input, .field-grid select, .field-grid textarea { width: 100%; border: 1px solid #d7e0d9; border-radius: 12px; outline: none; background: #fbfcfa; color: var(--ink); font-size: 12px; transition: border-color .18s ease, box-shadow .18s ease; }
.field-grid input, .field-grid select { height: 48px; padding: 0 13px; }
.field-grid textarea { resize: vertical; min-height: 105px; padding: 13px; line-height: 1.5; }
.field-grid input:focus, .field-grid select:focus, .field-grid textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(34,132,75,.09); }
.field-grid input::placeholder, .field-grid textarea::placeholder { color: #98a39c; }
.field-full { grid-column: 1 / -1; }
.consent-field { display: flex; align-items: flex-start; gap: 11px; margin-top: 20px; color: var(--muted); font-size: 10px; line-height: 1.55; cursor: pointer; }
.consent-field input { width: 17px; height: 17px; flex: 0 0 17px; margin: 1px 0 0; accent-color: var(--green-700); }
.form-message { margin: 14px 0 0; padding: 11px 13px; border-radius: 10px; font-size: 10px; font-weight: 700; }
.form-error { background: #fff0eb; color: #a83b16; }
.form-success { background: #eaf8ed; color: var(--green-700); }
.button-submit { width: 100%; margin-top: 21px; border: 0; background: linear-gradient(135deg,#188e47,#0f6f38); color: var(--white); box-shadow: 0 16px 34px rgba(17,126,61,.2); cursor: pointer; }
.button-submit svg:first-child { width: 20px; height: 20px; }
.form-note { margin: 11px 0 0; color: #87938c; text-align: center; font-size: 9px; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .68fr 1fr; align-items: start; gap: 86px; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { margin: 0 0 28px; color: var(--muted); font-size: 15px; line-height: 1.72; }
.faq-intro .button { width: max-content; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: grid; grid-template-columns: 38px 1fr 22px; align-items: center; gap: 10px; padding: 25px 0; list-style: none; color: var(--green-950); font-size: 15px; font-weight: 780; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--orange); font-size: 9px; font-weight: 900; }
.faq-list summary i { position: relative; width: 22px; height: 22px; border-radius: 50%; background: #edf3ed; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 6px; right: 6px; top: 10px; height: 1.5px; background: var(--green-700); }
.faq-list summary i::after { transform: rotate(90deg); transition: transform .18s ease; }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details > p { margin: -8px 32px 24px 48px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.site-footer { padding: 78px 0 20px; background: #041f13; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.35fr .65fr .78fr .9fr; gap: 48px; padding-bottom: 58px; }
.footer-brand img { width: 204px; padding: 8px 11px; border-radius: 10px; background: var(--white); }
.footer-brand p { max-width: 300px; margin: 22px 0 0; color: rgba(255,255,255,.46); font-size: 12px; line-height: 1.7; }
.footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: 11px; }
.footer-column > strong { margin-bottom: 8px; color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a, .footer-column > span, .footer-column p { color: rgba(255,255,255,.54); font-size: 11px; line-height: 1.55; }
.footer-column a:hover { color: var(--white); }
.footer-action { padding: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(255,255,255,.04); }
.footer-action p { margin: 0; }
.footer-action a { display: flex; align-items: center; gap: 7px; margin-top: 6px; color: var(--white); font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: 9px; line-height: 1.5; }

@media (max-width: 1020px) {
  .container { width: min(100% - 40px,900px); }
  .main-nav { gap: 18px; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .hero-slide { padding-top: 66px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(390px,.82fr); gap: 36px; }
  .hero-grid-club { grid-template-columns: minmax(0,.82fr) minmax(430px,1fr); }
  .hero-slide h1 { font-size: clamp(45px,5.8vw,61px); }
  .hero-visual { min-height: 500px; }
  .support-card, .visual-stamp { right: -6px; }
  .price-card { left: -15px; }
  .club-showcase { min-height: 520px; }
  .club-card-main { inset: 9px 8px 25px 18px; padding: 29px; }
  .club-card-main h2 { font-size: 31px; }
  .club-services { left: 29px; right: 29px; }
  .club-card-access { right: -8px; }
  .club-card-care { left: -8px; }
  .benefits-grid { grid-template-columns: repeat(3,1fr); }
  .benefit-main { grid-column: 1 / -1; grid-row: auto; min-height: 360px; }
  .benefit-main h3 { max-width: 500px; }
  .human-way-grid { gap: 42px; }
  .care-interface { min-height: 540px; padding: 24px; }
  .protection-ring { width: 330px; height: 330px; }
  .ring-core { inset: 98px; }
  .quote-grid { gap: 38px; }
  .quote-form { padding: 31px; }
  .faq-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1.25fr 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  .container { width: min(100% - 30px,600px); }
  .announcement-inner { min-height: 34px; font-size: 10px; }
  .announcement-separator, .announcement-separator + * { display: none; }
  .header-inner { height: 70px; }
  .brand img { width: 160px; }
  .menu-toggle { display: flex; }
  .menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: absolute; top: 70px; left: 0; right: 0; display: none; padding: 20px 15px 25px; flex-direction: column; align-items: stretch; gap: 0; border-top: 1px solid var(--line); background: rgba(255,254,250,.98); box-shadow: 0 20px 35px rgba(6,44,27,.1); }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.nav-cta) { display: block; padding: 14px 10px; border-bottom: 1px solid #edf0ed; }
  .nav-cta { margin-top: 15px; }
  .hero-carousel { min-height: 0; }
  .hero-slide { min-height: 0; padding: 55px 0 92px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-grid-club { grid-template-columns: 1fr; }
  .slide-number { margin-bottom: 25px; }
  .hero-slide h1 { margin-top: 21px; font-size: clamp(41px,12vw,57px); line-height: 1.02; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; gap: 13px; margin-top: 34px; }
  .hero-visual { min-height: 430px; margin-inline: 7px; }
  .hero-photo-shell { inset: 0 0 20px; border-radius: 150px 150px 26px 26px; }
  .hero-photo-shell img { object-position: 76% center; }
  .support-card { top: 38px; right: -10px; }
  .price-card { left: -10px; bottom: 0; width: 196px; }
  .visual-stamp { display: none; }
  .hero-footnote { display: none; }
  .club-line-one { width: 330px; height: 330px; top: -170px; right: -190px; }
  .club-line-two { display: none; }
  .club-showcase { min-height: 476px; margin-inline: 3px; }
  .club-card-main { inset: 0 0 35px; padding: 26px 21px; border-radius: 27px 27px 18px 18px; }
  .club-card-header { font-size: 8px; }
  .club-monogram { width: 66px; height: 66px; margin-top: 43px; font-size: 36px; }
  .club-card-main > p { margin-top: 20px; }
  .club-card-main h2 { max-width: 300px; font-size: 28px; }
  .club-services { left: 21px; right: 21px; bottom: 24px; }
  .club-services > div { padding: 13px 9px; }
  .club-services strong { font-size: 10px; }
  .club-card-access { top: 60px; right: -8px; width: 160px; padding: 14px; }
  .club-card-care { left: -7px; bottom: 18px; }
  .club-signature { right: -2px; bottom: 6px; font-size: 125px; }
  .carousel-controls { bottom: 19px; justify-content: center; }
  .carousel-pause { display: none; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid > div { min-height: 96px; border-bottom: 1px solid rgba(6,44,27,.16); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(n+3) { border-bottom: 0; }
  .proof-grid strong { font-size: 29px; }
  .section { padding: 80px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .age-selector-wrap { align-items: stretch; flex-direction: column; margin-top: 34px; padding: 18px; }
  .age-selector { display: grid; grid-template-columns: 1fr; }
  .age-selector button { width: 100%; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 31px 24px; }
  .plan-card > p, .plan-card ul { min-height: 0; }
  .benefits-heading { grid-template-columns: 1fr; gap: 22px; }
  .benefits-heading > p { margin: 0; }
  .benefits-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .benefit-main { grid-column: auto; min-height: 370px; }
  .benefit-card { min-height: 235px; padding: 26px; }
  .benefit-action { min-height: 260px; }
  .benefits-note { text-align: left; line-height: 1.5; }
  .human-way-grid { grid-template-columns: 1fr; gap: 45px; }
  .human-way-copy { order: -1; }
  .care-interface { min-height: 500px; padding: 21px; }
  .protection-ring { width: 300px; height: 300px; margin-top: 38px; }
  .ring-core { inset: 88px; font-size: 62px; }
  .ring-label-one { left: -2px; }
  .ring-label-two { right: -3px; }
  .interface-stats > div { padding: 12px 9px; }
  .values-list { grid-template-columns: 1fr; }
  .values-list > div { min-height: 120px; }
  .steps-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .steps-grid article { min-height: 240px; }
  .step-line { margin-bottom: 35px; }
  .quote-grid { grid-template-columns: 1fr; gap: 43px; }
  .quote-intro { position: static; }
  .summary-preview { margin-top: 28px; }
  .quote-form { padding: 28px 22px; border-radius: 24px; }
  .field-grid { grid-template-columns: 1fr; gap: 16px; }
  .field-full { grid-column: auto; }
  .button-submit { min-height: 58px; padding-inline: 17px; font-size: 12px; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; }
  .faq-intro .button { width: 100%; }
  .faq-list summary { grid-template-columns: 29px 1fr 22px; font-size: 14px; }
  .faq-list details > p { margin-left: 39px; }
  .footer-top { grid-template-columns: 1fr; gap: 35px; }
  .footer-action { max-width: 390px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 15px; bottom: 15px; width: 54px; height: 54px; justify-content: center; padding: 0; }
  .floating-whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .ring-two { animation: none; }
  .hero-slide { transform: none; }
}


/* Humanizar 1.2 — banners oficiais, painéis premium e tipografia ampliada */
body { font-size: 16px; }
.main-nav { font-size: 15px; }
.eyebrow { font-size: 13px; }
.button { min-height: 50px; font-size: 14px; }
.section { padding: 104px 0; }

.hero-art-carousel {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  background: #efe9dc;
  isolation: isolate;
}
.hero-art-slide {
  position: relative;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}
.hero-art-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-banner-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2048 / 688;
  object-fit: cover;
}
.hero-banner-cta {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65vw;
  min-height: 9%;
  padding: 0 1.15vw;
  border: 1px solid rgba(255,255,255,.35);
  font-size: clamp(10px,1.02vw,17px);
  font-weight: 850;
  letter-spacing: -.015em;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(6,44,27,.15);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.hero-banner-cta:hover,
.hero-banner-cta:focus-visible {
  filter: brightness(1.035);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6,44,27,.22);
}
.hero-banner-cta .arrow-icon { width: 1.2em; height: 1.2em; }
.hero-banner-cta > svg:not(.arrow-icon) { width: 1.55em; height: 1.55em; }
.hero-banner-cta-one {
  left: 41.7%;
  top: 72.6%;
  width: 18.7%;
  border-radius: 1vw;
  background: linear-gradient(135deg,#e2b849,#d6a62d);
  color: #073c2b;
}
.hero-banner-cta-two {
  left: 28.45%;
  top: 71.8%;
  width: 20.2%;
  min-height: 11.3%;
  border-color: rgba(255,255,255,.18);
  border-radius: 999px;
  background: linear-gradient(135deg,#0f643a,#064526);
  color: #fff;
}
.hero-mobile-copy { display: none; }
.art-carousel-controls {
  position: absolute;
  z-index: 8;
  right: 18px;
  bottom: 14px;
  left: auto;
  display: flex;
  width: auto;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(7,39,28,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 28px rgba(7,39,28,.15);
  backdrop-filter: blur(12px);
  transform: none;
}
.art-carousel-controls .carousel-arrow {
  width: 31px;
  height: 31px;
  border-color: rgba(7,39,28,.16);
  background: #fff;
  color: var(--green-900);
}
.art-carousel-controls .carousel-prev .arrow-icon { transform: rotate(180deg); }
.art-carousel-controls .carousel-dots { display: flex; align-items: center; gap: 5px; }
.art-carousel-controls .carousel-dots button { width: 24px; height: 30px; padding: 0; }
.art-carousel-controls .carousel-dots button span { width: 7px; height: 7px; background: #9aa69f; }
.art-carousel-controls .carousel-dots button.is-active span { width: 22px; background: var(--green-800); }
.art-carousel-controls .carousel-pause {
  min-height: 31px;
  padding: 0 9px;
  color: var(--green-800);
  font-size: 12px;
}

.service-strip {
  border: 0;
  background: linear-gradient(100deg,#063324,#0b4a34);
  color: #fff;
}
.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.service-strip-grid > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-content: center;
  column-gap: 14px;
  min-height: 112px;
  padding: 20px 30px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.service-strip-grid > div:last-child { border-right: 0; }
.service-strip-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(232,190,99,.46);
  border-radius: 16px;
  background: rgba(232,190,99,.1);
  color: #e7c26f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.service-strip-grid strong {
  align-self: end;
  color: #f5e2b7;
  font-size: 15px;
  line-height: 1.2;
}
.service-strip-grid strong + span {
  align-self: start;
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.35;
}

.plans {
  background:
    radial-gradient(circle at 3% 90%,rgba(196,154,90,.13),transparent 28%),
    linear-gradient(180deg,#f5f0e7,#fbfaf6);
}
.plans-console {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(7,39,28,.13);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 32px 84px rgba(7,39,28,.12);
}
.plans-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  background:
    radial-gradient(circle at 92% 0,rgba(216,189,138,.17),transparent 32%),
    var(--green-950);
  color: #fff;
}
.plans-console-title { display: grid; gap: 5px; }
.plans-console-title span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.plans-console-title strong { font-size: 19px; line-height: 1.25; }
.plans-console .age-selector-wrap {
  margin: 0;
  padding: 7px 8px 7px 16px;
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
}
.plans-console .age-selector-wrap > span { color: rgba(255,255,255,.72); font-size: 13px; }
.plans-console .age-selector button { min-height: 42px; color: rgba(255,255,255,.72); font-size: 13px; }
.plans-console .age-selector button:hover,
.plans-console .age-selector button.active {
  border-color: var(--champagne);
  background: linear-gradient(135deg,#dfc48f,#cba660);
  color: var(--green-950);
}
.dependent-free-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin: 24px 24px 0;
  padding: 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(185,138,52,.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 0,rgba(255,255,255,.72),transparent 30%),
    linear-gradient(120deg,#f8eed8,#e7ce98);
  color: var(--green-950);
  box-shadow: 0 14px 34px rgba(82,61,20,.1);
}
.dependent-free-age {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(216,189,138,.5);
  border-radius: 50%;
  background: var(--green-950);
  color: #fff;
  line-height: 1;
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.06);
}
.dependent-free-age strong { align-self: end; font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -.03em; }
.dependent-free-age span { align-self: start; margin-top: 4px; color: var(--champagne); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.dependent-free-copy { display: grid; gap: 4px; }
.dependent-free-copy > span { color: #805c1e; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.dependent-free-copy > strong { font-family: var(--font-display); font-size: clamp(23px,2.4vw,32px); font-weight: 600; line-height: 1.08; letter-spacing: -.025em; }
.dependent-free-copy p { margin: 0; color: #4a514a; font-size: 14px; line-height: 1.45; }
.dependent-free-stamp {
  min-width: 132px;
  padding: 12px 16px;
  border: 1px solid rgba(7,39,28,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.dependent-free-stamp span { color: var(--green-700); font-size: 16px; }
.plans-console .plan-grid { gap: 20px; margin: 0; padding: 24px; }
.plans-console .plan-card {
  padding: 42px;
  border-radius: 23px;
  background: #fff;
  box-shadow: none;
}
.plans-console .plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg,var(--green-700),#76a487);
}
.plans-console .plan-card.featured {
  border-color: #c9ad76;
  background: linear-gradient(145deg,#fff,#faf5e9);
  box-shadow: 0 18px 46px rgba(7,39,28,.09);
}
.plans-console .plan-card.featured::before {
  background: linear-gradient(90deg,#b98a34,#e2c37e);
}
.recommended { padding: 12px 20px; font-size: 11px; }
.plan-label { font-size: 13px; }
.plan-code { font-size: 14px; }
.plan-card h3 { font-size: 33px; }
.plan-card > p { font-size: 15px; }
.plan-price > span,
.plan-price em { font-size: 13px; }
.plan-price small { font-size: 15px; }
.plan-card li { font-size: 15px; line-height: 1.55; }
.plans-note { font-size: 13px; line-height: 1.6; }

.benefits {
  background:
    radial-gradient(circle at 95% 5%,rgba(216,189,138,.13),transparent 26%),
    linear-gradient(140deg,#061f17,#0a422e 74%,#0d5036);
}
.benefits-console {
  position: relative;
  z-index: 1;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: rgba(3,25,17,.42);
  box-shadow: 0 36px 80px rgba(0,0,0,.17);
}
.benefits-console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 64px;
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.045);
}
.benefits-console-bar > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.benefits-console-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73cd91;
  box-shadow: 0 0 0 6px rgba(115,205,145,.12);
}
.benefits-console-bar strong { color: rgba(255,255,255,.77); font-size: 14px; }
.benefits-console .benefits-grid {
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-areas:
    "main health pet"
    "main action action";
  gap: 12px;
  margin: 0;
  padding: 14px;
}
.benefits-console .benefit-main { grid-area: main; }
.benefits-console .benefit-health { grid-area: health; }
.benefits-console .benefit-pet { grid-area: pet; }
.benefits-console .benefit-action { grid-area: action; }
.benefits-console .benefit-card {
  min-height: 250px;
  padding: 32px;
  border-radius: 20px;
  background: rgba(255,255,255,.065);
}
.benefits-console .benefit-main {
  min-height: 512px;
  background:
    radial-gradient(circle at 20% 18%,rgba(216,189,138,.18),transparent 30%),
    linear-gradient(160deg,rgba(255,255,255,.09),rgba(216,189,138,.08));
}
.benefits-console .benefit-action {
  min-height: 250px;
  background: linear-gradient(135deg,#e6d5ae,#cdb277);
}
.benefit-card > span { font-size: 12px; }
.benefit-card p { font-size: 15px; }
.benefit-signal { font-size: 13px; }
.benefit-action button { font-size: 14px; }
.benefits-note { font-size: 12px; line-height: 1.6; }

.ring-logo {
  inset: 92px;
  padding: 24px;
}
.ring-logo::after { display: none; }
.ring-logo img { width: 100%; max-width: 138px; height: auto; }
.interface-top { font-size: 12px; }
.ring-label { font-size: 11px; }
.interface-stats strong { font-size: 13px; }
.interface-stats span { font-size: 11px; }
.values-list span { font-size: 12px; }
.values-list strong { font-size: 16px; }
.values-list p { font-size: 14px; }
.steps-grid article > span { font-size: 13px; }
.steps-grid p { font-size: 15px; }

.summary-title,
.form-heading > span { font-size: 12px; }
.summary-preview dt { font-size: 12px; }
.summary-preview dd { font-size: 14px; }
.summary-secure { font-size: 12px; }
.direct-contact small { font-size: 12px; }
.direct-contact strong { font-size: 16px; }
.field-grid label > span { font-size: 13px; }
.field-grid input,
.field-grid select,
.field-grid textarea { font-size: 14px; }
.consent-field,
.form-message,
.form-note { font-size: 12px; }
.faq-list summary { font-size: 16px; }
.faq-list summary > span { font-size: 12px; }
.faq-list details > p { font-size: 15px; }
.footer-brand p { font-size: 14px; }
.footer-column > strong { font-size: 12px; }
.footer-column a,
.footer-column > span,
.footer-column p { font-size: 14px; }
.footer-bottom { font-size: 11px; }
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}
.instagram-link svg { width: 18px; height: 18px; }

@media (max-width: 1020px) {
  .plans-console-head { align-items: stretch; flex-direction: column; }
  .plans-console .age-selector-wrap { width: 100%; }
  .benefits-console .benefits-grid {
    grid-template-columns: repeat(2,1fr);
    grid-template-areas:
      "main main"
      "health pet"
      "action action";
  }
  .benefits-console .benefit-main { min-height: 360px; grid-row: auto; }
}

@media (max-width: 820px) {
  .section { padding: 78px 0; }
  .header-inner { height: 72px; }
  .main-nav { top: 72px; }
  .hero-art-slide { height: 610px; }
  .hero-banner-image {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    filter: saturate(.94) contrast(.98);
  }
  .hero-art-cremation .hero-banner-image { object-position: 76% center; }
  .hero-art-telepet .hero-banner-image { object-position: 73% center; }
  .hero-art-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,rgba(5,35,24,.02) 38%,rgba(5,35,24,.48) 100%);
    pointer-events: none;
  }
  .hero-banner-cta { display: none; }
  .hero-mobile-copy {
    position: absolute;
    z-index: 4;
    right: 15px;
    bottom: 18px;
    left: 15px;
    display: block;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 24px;
    background: rgba(253,249,241,.94);
    color: var(--green-950);
    box-shadow: 0 22px 50px rgba(2,24,16,.25);
    backdrop-filter: blur(16px);
  }
  .hero-mobile-copy > span {
    color: #a87525;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .hero-mobile-copy h1 {
    margin: 10px 0 10px;
    font-family: var(--font-display);
    font-size: clamp(30px,8.3vw,39px);
    line-height: 1.02;
    letter-spacing: -.04em;
    font-weight: 600;
  }
  .hero-mobile-copy p { margin: 0 0 18px; color: #536159; font-size: 15px; line-height: 1.55; }
  .hero-mobile-copy .button { width: 100%; }
  .hero-mobile-copy .button > svg:not(.arrow-icon) { width: 21px; height: 21px; }
  .art-carousel-controls {
    top: 14px;
    right: 14px;
    bottom: auto;
    padding: 6px;
  }
  .art-carousel-controls .carousel-pause { display: none; }

  .service-strip-grid { grid-template-columns: 1fr; padding-block: 7px; }
  .service-strip-grid > div {
    min-height: 86px;
    padding: 15px 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
  }
  .service-strip-grid > div:last-child { border-bottom: 0; }

  .plans-console { margin-top: 34px; border-radius: 24px; }
  .plans-console-head { padding: 22px; }
  .plans-console .age-selector-wrap { align-items: stretch; padding: 14px; }
  .plans-console .age-selector { grid-template-columns: repeat(3,1fr); }
  .plans-console .age-selector button {
    min-height: 52px;
    padding: 6px 8px;
    white-space: normal;
    line-height: 1.25;
  }
  .dependent-free-banner { grid-template-columns: auto 1fr; margin: 14px 14px 0; padding: 17px; }
  .dependent-free-age { width: 68px; height: 68px; }
  .dependent-free-age strong { font-size: 21px; }
  .dependent-free-stamp { grid-column: 1 / -1; width: 100%; }
  .plans-console .plan-grid { grid-template-columns: 1fr; padding: 14px; }
  .plans-console .plan-card { padding: 34px 24px; }
  .plan-card h3 { font-size: 30px; }

  .benefits-console { margin-top: 38px; border-radius: 24px; }
  .benefits-console-bar { align-items: flex-start; flex-direction: column; padding: 18px 20px; }
  .benefits-console .benefits-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "health"
      "pet"
      "action";
  }
  .benefits-console .benefit-main,
  .benefits-console .benefit-card { min-height: 280px; padding: 26px; }
  .benefits-console .benefit-main { min-height: 380px; }
  .benefit-main h3 { font-size: 34px; }

  .ring-logo { inset: 78px; padding: 22px; }
  .footer-top { gap: 34px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px,600px); }
  .brand img { width: 154px; }
  .hero-art-slide { height: 585px; }
  .hero-mobile-copy { padding: 22px; }
  .hero-mobile-copy h1 { font-size: 31px; }
  .service-strip-grid > div { grid-template-columns: 45px 1fr; column-gap: 12px; }
  .service-strip-icon { width: 45px; height: 45px; }
  .plans-console .age-selector-wrap > span { margin-bottom: 3px; }
  .plans-console .age-selector { grid-template-columns: 1fr; }
  .plans-console .age-selector button { min-height: 42px; }
  .dependent-free-banner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .dependent-free-copy > strong { font-size: 25px; }
  .dependent-free-stamp { grid-column: auto; }
}
