:root {
  --navy-950: #061d2d;
  --navy-900: #08283c;
  --navy-850: #0b344b;
  --navy-800: #0e425d;
  --blue-600: #168bb1;
  --aqua-500: #13c8c9;
  --aqua-400: #32d7d4;
  --lime-400: #c9f43d;
  --lime-300: #d7fb62;
  --green-600: #147a45;
  --ink: #122d3d;
  --muted: #627682;
  --surface: #f5f9fb;
  --surface-2: #eef6f8;
  --white: #ffffff;
  --line: rgba(7, 42, 61, 0.11);
  --shadow-sm: 0 10px 28px rgba(6, 29, 45, 0.07);
  --shadow-md: 0 24px 58px rgba(6, 29, 45, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  overflow-x: hidden;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}
body.menu-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, p, li, dd, dt, address, a, span {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

::selection { background: var(--lime-400); color: var(--navy-950); }
:focus-visible { outline: 3px solid var(--lime-400); outline-offset: 4px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 1.08em;
  height: 1.08em;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 11px 15px;
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--lime-400);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  color: var(--white);
  background: rgba(6, 29, 45, 0.98);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow .18s ease, background .18s ease;
}
.site-header.scrolled,
.site-header.menu-active {
  background: rgba(6, 29, 45, 0.995);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  width: 138px;
  height: 64px;
  flex: 0 0 138px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand picture { display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.brand img { width: 124px; max-width:100%; height:auto; object-fit:contain; }

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.4vw, 20px);
  color: rgba(255,255,255,.86);
  font-size: .88rem;
  font-weight: 700;
}
.main-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime-400);
  transition: right .18s ease;
}
.main-nav > a:not(.button):hover,
.main-nav > a:not(.button).active { color: var(--white); }
.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button).active::after { right: 0; }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: .7; cursor: wait; transform: none; }
.button-whatsapp,
.nav-cta {
  color: var(--navy-950);
  background: var(--lime-400);
  box-shadow: 0 10px 22px rgba(201,244,61,.16);
}
.button-whatsapp:hover,
.nav-cta:hover { background: var(--lime-300); }
.button-primary,
.button-location,
.button-event {
  color: var(--white);
  background: var(--navy-850);
  box-shadow: 0 10px 22px rgba(6,29,45,.14);
}
.button-primary:hover,
.button-location:hover,
.button-event:hover { background: var(--navy-950); }
.button-secondary,
.button-instagram {
  color: var(--navy-900);
  border-color: rgba(8,40,60,.15);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(6,29,45,.05);
}
.button-secondary:hover,
.button-instagram:hover { border-color: rgba(8,40,60,.3); background: #f9fcfd; }
.button-white {
  color: var(--navy-950);
  background: var(--white);
}

/* Hero — Style 3 */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 68px) 0 78px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 350px;
  height: 350px;
  border-radius: 48% 52% 48% 52%;
  background: var(--aqua-500);
  transform: rotate(26deg);
  opacity: .96;
}
.hero::after {
  content: "";
  position: absolute;
  left: 46%;
  top: 115px;
  width: 86px;
  height: 86px;
  background-image: radial-gradient(circle, var(--lime-400) 2.3px, transparent 2.7px);
  background-size: 14px 14px;
  opacity: .7;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 82px);
}
.hero-copy,
.hero-visual { min-width: 0; width: 100%; }
.eyebrow,
.card-kicker,
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow::before,
.card-kicker::before,
.service-tag::before {
  content: "";
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.hero .eyebrow { color: var(--aqua-400); }
.eyebrow.light { color: var(--aqua-400); }
.hero h1,
.section-heading h2,
.audience-card h2,
.service-content h3,
.location-copy h2,
.contact-copy h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.07;
  letter-spacing: -.032em;
}
.hero h1 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(2.6rem, 4.1vw, 4rem);
  font-weight: 850;
}
.hero-highlight { color: var(--lime-400); }
.hero-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero .button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.32);
  background: transparent;
  box-shadow: none;
}
.hero .button-secondary:hover { background: rgba(255,255,255,.08); }
.hero-facts {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}
.hero-facts > div {
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.hero-facts dt {
  color: var(--aqua-400);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hero-facts dd {
  margin: 5px 0 0;
  color: var(--white);
  font-size: .9rem;
  font-weight: 750;
}
.hero-assurance {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px !important;
  color: rgba(255,255,255,.62) !important;
  font-size: .9rem !important;
}
.hero-assurance .icon { margin-top: .18em; color: var(--lime-400); }
.hero-visual {
  position: relative;
  min-height: 520px;
}
.pool-card {
  position: absolute;
  inset: 24px 0 32px 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 74px 26px 74px 26px;
  background: var(--navy-850);
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}
.pool-card picture,
.pool-card img { width: 100%; height: 100%; }
.pool-card img { object-fit: cover; object-position: 50% 62%; }
.hero-note {
  position: absolute;
  z-index: 4;
  width: min(255px, 66%);
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(6,29,45,.92);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}
.hero-note strong,
.hero-note span { display: block; }
.hero-note strong { color: var(--lime-400); font-size: 1rem; }
.hero-note span { margin-top: 3px; color: rgba(255,255,255,.74); font-size: .82rem; }
.hero-note-aulas { top: 0; left: 0; }
.hero-note-festas { right: 0; bottom: 0; }

/* Audience */
.audiences { padding: 54px 0; background: var(--white); }
.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.audience-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.audience-card h2 { color: var(--navy-950); font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.audience-card p { margin: 14px 0 0; color: var(--muted); }
.text-action {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(14,66,93,.25);
}

/* Shared sections */
.section { padding: 82px 0; }
.section-heading { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.section-heading.align-left { margin: 0; text-align: left; }
.section-heading h2,
.location-copy h2,
.contact-copy h2 { color: var(--navy-950); font-size: clamp(2rem, 3.8vw, 3.2rem); }
.section-heading p,
.location-copy p,
.contact-copy p { margin: 14px 0 0; color: var(--muted); font-size: 1.02rem; }
.section-anchor { scroll-margin-top: 0; }

/* Services */
.services { background: var(--surface); }
.service-stack { display: grid; gap: 22px; }
.service-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.78fr);
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.service-panel.reverse { grid-template-columns: minmax(300px,.78fr) minmax(0,1fr); }
.service-panel.reverse .service-content { order: 2; }
.service-content { min-width: 0; padding: 28px; }
.service-content h3 { color: var(--navy-950); font-size: clamp(1.75rem, 3vw, 2.6rem); }
.service-content p { margin: 14px 0 0; color: var(--muted); }
.check-list { display: grid; gap: 11px; margin: 20px 0 24px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: var(--ink); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--aqua-500);
  box-shadow: inset 0 0 0 4px #eafafa;
}
.service-photo {
  min-width: 0;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  color: var(--white);
  background: var(--navy-850);
}
.service-photo::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4,27,42,.72));
}
.service-photo picture,
.service-photo img { width: 100%; height: 100%; }
.service-photo img { object-fit: cover; }
.service-photo span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 850;
}
.service-photo.video-photo {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--navy-900);
}
.service-photo.video-photo::after { display: none; }
.service-photo.video-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/photos/hidroginastica-poster-v17.webp") center/cover no-repeat;
  opacity: .28;
  filter: blur(7px);
  transform: scale(1.05);
}
.service-photo.video-photo video {
  position: relative;
  z-index: 1;
  width: min(100%, 310px);
  height: auto;
  max-height: 470px;
  aspect-ratio: 320 / 568;
  object-fit: cover;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,.26);
}
.video-play-fallback {
  position: absolute;
  z-index: 5;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6,29,45,.9);
  font-weight: 800;
  cursor: pointer;
}

/* Benefits */
.benefits-section { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.benefit-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.benefit-card > .icon {
  width: 46px; height: 46px;
  padding: 11px;
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--lime-400);
}
.benefit-card h3 { margin: 18px 0 7px; color: var(--navy-950); font-size: 1.08rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .94rem; }

/* Gallery */
.gallery-section { background: var(--surface-2); }
.gallery-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.gallery-item {
  min-width: 0;
  height: 360px;
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5,29,45,.75));
}
.gallery-item picture,
.gallery-item img { width: 100%; height: 100%; }
.gallery-item img { object-fit: cover; transition: transform .25s ease; }
.gallery-item:nth-child(3) img { object-fit: contain; padding: 12px; background: var(--navy-900); }
.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-size: 1rem;
  font-weight: 850;
}
.gallery-caption { color: inherit; }
@media (hover:hover) { .gallery-item:hover img { transform: scale(1.02); } }
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.gallery-cta p { margin: 0; color: var(--muted); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(1,12,19,.9); }
.lightbox-panel { position: relative; z-index: 1; width: min(100%,1100px); max-height: calc(100dvh - 40px); display: grid; place-items: center; }
.lightbox-panel img { width: auto; max-width: 100%; max-height: calc(100dvh - 40px); border-radius: 18px; object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.lightbox-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  color: var(--navy-950); background: var(--white);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
}
html.lightbox-open, html.lightbox-open body { overflow: hidden; }

/* FAQ */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 44px; align-items: start; }
.faq-grid > * { min-width: 0; }
.faq-grid .section-heading { position: sticky; top: calc(var(--header-h) + 22px); }
.faq-grid .section-heading .button { margin-top: 20px; }
.faq-list { display: grid; gap: 11px; }
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.faq-item summary {
  position: relative;
  padding: 18px 52px 18px 18px;
  color: var(--navy-950);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--navy-950); background: var(--lime-400);
  transition: transform .16s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 0; padding: 0 18px 18px; color: var(--muted); }
.faq-item p a { color: var(--navy-800); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* Location */
.location-section { background: var(--surface); }
.location-grid,
.contact-grid { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: 44px; align-items: center; }
.location-grid > *, .contact-grid > * { min-width: 0; }
.location-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--navy-950);
  background: var(--white);
  font-style: normal;
  font-weight: 750;
}
.location-address .icon { width: 22px; height: 22px; margin-top: 2px; color: var(--aqua-500); }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.map-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.map-pattern {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.52) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.52) 1px, transparent 1px),
    linear-gradient(145deg, #dff4ea, #edf4dc 46%, #dceef4);
  background-size: 34px 34px, 34px 34px, auto;
}
.map-road { position: absolute; display: block; height: 26px; border: 7px solid rgba(255,255,255,.95); border-radius: 999px; background: #d8d0c4; }
.map-road-one { width:125%; top:38%; left:-12%; transform:rotate(-12deg); }
.map-road-two { width:90%; top:26%; left:24%; transform:rotate(58deg); }
.map-road-three { width:80%; bottom:12%; left:-8%; transform:rotate(28deg); }
.map-pin {
  position: absolute; top:50%; left:54%;
  width: 60px; height:60px;
  display:grid; place-items:center;
  border:6px solid var(--white);
  border-radius:50% 50% 50% 10%;
  color:var(--navy-950); background:var(--lime-400);
  box-shadow:var(--shadow-md);
  transform:translate(-50%,-58%) rotate(-45deg);
}
.map-pin .icon { width:26px; height:26px; transform:rotate(45deg); }
.map-preview-content { padding: 22px; }
.map-status { display:inline-flex; padding:6px 10px; border-radius:999px; color:var(--navy-950); background:var(--lime-400); font-size:.75rem; font-weight:850; }
.map-preview-content h3 { margin: 11px 0 6px; color: var(--navy-950); font-size: 1.3rem; }
.map-preview-content p { margin: 0 0 16px; color: var(--muted); }

/* Contact */
.contact-section { color: var(--white); background: var(--navy-900); }
.contact-copy h2 { color: var(--white); }
.contact-copy p { color: rgba(255,255,255,.72); }
.contact-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.contact-links a {
  display: inline-flex;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  font-weight: 750;
}
.contact-points { color: rgba(255,255,255,.78); }
.lead-form {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 55px rgba(0,0,0,.18);
}
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { color: var(--navy-950); font-size: .9rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(7,42,61,.16);
  border-radius: 12px;
  color: var(--ink);
  background: #fbfdfe;
  outline: none;
}
.field input, .field select { min-height: 50px; padding: 0 14px; }
.field textarea { min-height: 110px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--aqua-500); box-shadow: 0 0 0 3px rgba(19,200,201,.14); }
.field-error { min-height: 16px; color: #b54545; font-size: .82rem; font-weight: 700; }
.form-button { width: 100%; }
.form-note { margin: 10px 0 0; color: var(--muted); text-align: center; font-size: .82rem; }

/* Final CTA */
.final-cta { padding: 50px 0; color: var(--white); background: var(--aqua-500); }
.final-cta-inner { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center; }
.final-cta span { color: var(--navy-950); font-weight: 800; }
.final-cta h2 { margin-top: 4px; color: var(--navy-950); font-size: clamp(1.65rem,3vw,2.5rem); }

/* Footer */
.site-footer { padding: 62px 0 20px; color: rgba(255,255,255,.7); background: #041722; }
.footer-grid { display:grid; gap:40px; }
.footer-grid-compact { grid-template-columns: 1.25fr .7fr 1.1fr; }
.footer-grid > * { min-width:0; }
.footer-brand-logo {
  width: 138px;
  display: inline-flex;
  align-items:center;
  justify-content:flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.footer-brand-logo picture { display:block; width:100%; }
.footer-brand-logo img { display:block; width:128px; max-width:100%; height:auto; object-fit:contain; }
.footer-brand > p { max-width: 310px; margin: 14px 0 0; color: rgba(255,255,255,.62); }
.site-footer h2 { margin:0 0 12px; color:var(--white); font-size:.95rem; }
.footer-links a { display:block; margin:8px 0; color:rgba(255,255,255,.68); }
.footer-links a:hover { color: var(--lime-400); }
.footer-contact { display:grid; align-content:start; gap:9px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:9px; color:rgba(255,255,255,.68); }
.footer-contact-item .icon { width:18px; height:18px; margin-top:3px; color:var(--aqua-400); }
.footer-bottom { margin-top:34px; padding-top:18px; border-top:1px solid rgba(255,255,255,.09); color:rgba(255,255,255,.48); font-size:.8rem; }
.vertice81-credit {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top: 14px;
  padding-top: 12px;
  color:rgba(255,255,255,.52);
  font-size:.76rem;
  text-align:center;
}
.vertice81-credit-link { display:inline-flex; align-items:center; justify-content:center; cursor:pointer; }
.vertice81-credit-link img { width:60px; height:auto; object-fit:contain; transition:transform .2s ease, opacity .2s ease; }
.vertice81-credit-link:hover img { transform:scale(1.04); opacity:.88; }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 900;
  min-height: 54px;
  display: inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px 6px 6px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  color:var(--white);
  background:var(--green-600);
  box-shadow:0 14px 34px rgba(8,79,42,.24);
}
.floating-whatsapp-icon { width:42px; height:42px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.1); }
.floating-whatsapp-icon .icon { width:24px; height:24px; }
.floating-whatsapp-copy { display:flex; align-items:center; }
.floating-whatsapp-copy strong { font-size:.82rem; }

.reveal { opacity: 1; transform: none; }

@media (hover:hover) {
  .audience-card,
  .service-panel,
  .benefit-card { transition: transform .18s ease, box-shadow .18s ease; }
  .audience-card:hover,
  .service-panel:hover,
  .benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
}

/* Tablet */
@media (max-width: 1080px) {
  .main-nav { font-size:.82rem; gap:12px; }
  .nav-cta { padding-inline:14px; }
  .hero-grid { grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr); gap:36px; }
  .footer-grid-compact { grid-template-columns:1fr .65fr 1fr; }
}

@media (max-width: 940px) {
  :root { --header-h: 76px; }
  .container { width:min(calc(100% - 32px),var(--container)); }
 .brand { width:136px; flex-basis:136px; padding:0; border-radius:0; }
  .menu-toggle { display:flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    max-height: calc(100dvh - var(--header-h));
    display:grid;
    align-items:stretch;
    gap:0;
    padding:10px 16px 18px;
    overflow-y:auto;
    border-top:1px solid rgba(255,255,255,.08);
    background:rgba(6,29,45,.995);
    box-shadow:0 24px 44px rgba(0,0,0,.24);
    transform:translateY(-120%);
    opacity:0;
    pointer-events:none;
    transition:transform .18s ease,opacity .18s ease;
  }
  .main-nav.open { transform:translateY(0); opacity:1; pointer-events:auto; }
  .main-nav > a { min-height:48px; display:flex; align-items:center; border-bottom:1px solid rgba(255,255,255,.07); }
  .main-nav > a:not(.button)::after { display:none; }
  .main-nav .button { margin-top:10px; border-bottom:0; }

  .hero { min-height:auto; padding:calc(var(--header-h) + 54px) 0 70px; }
  .hero::after { left:auto; right:24px; top:104px; }
  .hero-grid { grid-template-columns:minmax(0,1fr); gap:42px; }
  .hero-copy { max-width:760px; }
  .hero-visual { width:min(100%,660px); margin-inline:auto; }
  .audience-grid,
  .faq-grid,
  .location-grid,
  .contact-grid,
  .footer-grid-compact { grid-template-columns:minmax(0,1fr); }
  .service-panel,
  .service-panel.reverse { grid-template-columns:minmax(0,1fr); }
  .service-panel.reverse .service-content { order:0; }
  .faq-grid .section-heading { position:static; }
  .benefits-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .final-cta-inner { grid-template-columns:minmax(0,1fr); }
  .final-cta .button { justify-self:start; }
  .footer-brand > p { max-width:none; }
}

/* Mobile */
@media (max-width: 680px) {
  :root { --header-h: 72px; }
  .container {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    margin-inline: 14px;
  }
  .site-header { height:var(--header-h); }
  .header-inner { min-height:var(--header-h); gap:12px; }
 .brand { width:128px; flex:0 0 128px; padding:0; border-radius:0; }
  .menu-toggle { width:46px; height:46px; border-radius:14px; }

  .hero {
    padding: calc(var(--header-h) + 36px) 0 56px;
  }
  .hero::before { width:210px; height:210px; right:-120px; bottom:-95px; opacity:.74; }
  .hero::after { width:62px; height:62px; right:10px; top:92px; background-size:11px 11px; }
  .hero-grid,
  .hero-copy,
  .hero-visual {
    width:100%;
    max-width:100%;
    min-width:0;
  }
  .hero-grid { display:grid; grid-template-columns:minmax(0,1fr); gap:34px; }
  .hero h1 {
    max-width:100%;
    font-size:clamp(2.15rem,10vw,3rem);
    line-height:1.04;
  }
  .hero-copy > p { max-width:100%; margin-top:18px; font-size:.98rem; }
  .hero-actions { display:grid; gap:10px; margin-top:24px; }
  .hero-actions .button { width:100%; min-width:0; }
  .hero-facts { grid-template-columns:minmax(0,1fr); gap:8px; max-width:100%; }
  .hero-facts > div { width:100%; min-width:0; padding:12px 14px; }
  .hero-facts dd { font-size:.9rem; }
  .hero-assurance { width:100%; max-width:100%; }
  .hero-visual { min-height:0; display:grid; gap:10px; }
  .pool-card {
    position:relative;
    inset:auto;
    width:100%;
    height:380px;
    border-radius:38px 16px 38px 16px;
  }
  .pool-card picture,
  .pool-card img { width:100%; height:100%; }
  .pool-card img { object-fit:cover; object-position:50% 62%; }
  .hero-note { position:static; width:100%; max-width:100%; padding:12px 14px; backdrop-filter:none; }

  .audiences { padding:38px 0; }
  .audience-grid { grid-template-columns:minmax(0,1fr); gap:12px; }
  .audience-card { padding:21px; }
  .audience-card h2 { font-size:1.55rem; }

  .section { padding:64px 0; }
  .section-heading { margin-bottom:32px; }
  .section-heading h2,
  .location-copy h2,
  .contact-copy h2 { font-size:clamp(1.85rem,8vw,2.35rem); }

  .service-panel { padding:10px; gap:0; border-radius:20px; }
  .service-content { padding:22px 16px 24px; }
  .service-content h3 { font-size:1.7rem; }
  .service-photo { min-height:270px; border-radius:16px; }
  .service-photo.video-photo { min-height:430px; padding:12px; }
  .service-photo.video-photo video { width:min(100%,280px); max-height:none; }

  .benefits-grid { grid-template-columns:minmax(0,1fr); gap:12px; }
  .benefit-card { padding:20px; }

  .gallery-grid { grid-template-columns:minmax(0,1fr); gap:12px; }
  .gallery-item { width:100%; min-width:0; height:320px; }
  .gallery-item:nth-child(3) { height:410px; }
  .gallery-cta { align-items:stretch; flex-direction:column; padding:17px; }
  .gallery-cta .button { width:100%; }

  .faq-item summary { padding:17px 50px 17px 16px; }
  .faq-item p { padding:0 16px 17px; }

  .location-actions { display:grid; }
  .location-actions .button { width:100%; }
  .map-pattern { min-height:205px; }

  .contact-links { display:grid; }
  .lead-form { padding:21px; }

  .final-cta { padding:40px 0; }
  .final-cta .button { width:100%; justify-self:stretch; }

  .site-footer { padding:48px 0 18px; }
  .footer-grid { gap:28px; }
  .footer-brand-logo { width:128px; }
  .footer-bottom { text-align:center; }
  .vertice81-credit { flex-direction:column; gap:5px; }
  .vertice81-credit-link img { width:56px; }

  .floating-whatsapp {
    width:54px;
    height:54px;
    min-height:54px;
    right:max(13px,env(safe-area-inset-right));
    bottom:max(13px,env(safe-area-inset-bottom));
    padding:6px;
    border-radius:50%;
  }
  .floating-whatsapp-icon { width:40px; height:40px; }
  .floating-whatsapp-copy { display:none; }
}

@media (max-width: 380px) {
  .container { width:calc(100% - 24px); max-width:calc(100% - 24px); margin-inline:12px; }
 .brand { width:122px; flex-basis:122px; }
  .hero h1 { font-size:2.05rem; }
  .pool-card { height:340px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
  }
}


/* V22 — logo oficial enviada pelo cliente */
.brand img,
.footer-brand-logo img {
  image-rendering: auto;
  filter: none;
}
@media (max-width: 680px) {
  .brand img { width: 116px; }
  .footer-brand-logo { width: 118px; }
  .footer-brand-logo img { width: 118px; }
}

/* V23 — logo compacta e sem caixa visual */
.brand {
  width: 104px;
  height: 48px;
  flex: 0 0 104px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}
.brand picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent !important;
}
.brand img {
  display: block;
  width: 92px;
  max-width: 92px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-brand-logo {
  width: 96px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}
.footer-brand-logo picture {
  display: block;
  width: 100%;
  background: transparent !important;
}
.footer-brand-logo img {
  display: block;
  width: 88px;
  max-width: 88px;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 940px) {
  .brand {
    width: 94px;
    height: 44px;
    flex: 0 0 94px;
  }
  .brand img {
    width: 82px;
    max-width: 82px;
    max-height: 42px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    gap: 12px;
  }
  .brand {
    width: 88px;
    height: 42px;
    flex: 0 0 88px;
  }
  .brand img {
    width: 78px;
    max-width: 78px;
    max-height: 40px;
  }
  .footer-brand-logo {
    width: 88px;
  }
  .footer-brand-logo img {
    width: 80px;
    max-width: 80px;
  }
}

/* Header mais compacto para a marca não dominar a tela */
:root { --header-h: 76px; }
@media (max-width: 940px) { :root { --header-h: 70px; } }
@media (max-width: 680px) { :root { --header-h: 66px; } }

/* V24 — assinatura Vértice 81 refinada para o rodapé escuro */
.vertice81-credit {
  width: min(calc(100% - 32px), 1180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  line-height: 1.35;
  text-align: center;
}

.vertice81-credit > span {
  letter-spacing: 0.01em;
}

.vertice81-credit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border-radius: 10px;
  cursor: pointer;
  line-height: 0;
}

.vertice81-credit-link picture {
  display: block;
  line-height: 0;
}

.vertice81-credit-link img {
  display: block;
  width: 86px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  filter: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.vertice81-credit-link:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.vertice81-credit-link:focus-visible {
  outline: 2px solid var(--aqua-400);
  outline-offset: 4px;
}

@media (max-width: 680px) {
  .vertice81-credit {
    gap: 5px;
    margin-top: 12px;
    padding-top: 8px;
    font-size: 0.68rem;
  }

  .vertice81-credit-link img {
    width: 72px;
  }
}
