/* ==========================================================================
   Dr. Luiz Fernando Pinho Miranda — Cirurgia Plástica
   Stylesheet — v2 (multi-página, estilo editorial leve, azul da marca)
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }

/* ---------- Design tokens ---------- */
:root{
  --petrol-900: #071319;
  --petrol-800: #0a1a20;
  --petrol-700: #0f2933;
  --petrol-600: #12465b;
  --petrol-500: #006177;
  --teal-400: #13aaba;
  --teal-300: #2cbfce;
  --gray-300: #c1c5c6;
  --off-white: #F7F5F1;
  --off-white-2: #FAF9F6;
  --white: #ffffff;
  --ink: #101b1f;

  --gradient-brand: linear-gradient(135deg, #006177 0%, #2cbfce 100%);

  --text-on-dark: #F3F1EC;
  --text-on-dark-muted: rgba(243,241,236,0.66);
  --text-on-light: #10262d;
  --text-on-light-muted: #55686f;

  --line-light: rgba(16,38,45,0.1);
  --line-dark: rgba(243,241,236,0.14);

  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: 24px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-m: .7s;
}

@media (min-width: 768px){
  :root{ --gutter: 40px; }
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
}

body{
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text-on-light);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  opacity: 0;
}
.has-js body{ transition: opacity .5s var(--ease); }
body.is-ready{ opacity: 1; }
.no-js-fallback body,
html:not(.has-js) body{ opacity: 1; }

h1, h2, h3, h4, blockquote, cite{
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link{
  position: absolute;
  left: -999px; top: 0;
  background: var(--off-white); color: var(--ink);
  padding: 12px 18px; z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* ---------- Typography helpers ---------- */
.eyebrow{
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2{ font-size: clamp(1.9rem, 1.5rem + 2vw, 3rem); margin-bottom: 20px; color: var(--text-on-light); }
.section--dark h2{ color: var(--text-on-dark); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background-color .4s var(--ease), background-position .6s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn--primary{
  background: var(--gradient-brand);
  background-size: 170% 170%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(0,97,119,0.45);
}
.btn--primary:hover{
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -10px rgba(0,97,119,0.55);
}
.btn--outline{
  border: 1.5px solid rgba(16,38,45,0.28);
  color: inherit;
}
.btn--outline:hover{ background: rgba(0,97,119,0.07); border-color: var(--petrol-500); transform: translateY(-3px); }
.section--dark .btn--outline{ color: var(--text-on-dark); border-color: rgba(243,241,236,0.35); }
.section--dark .btn--outline:hover{ background: rgba(255,255,255,0.08); border-color: rgba(243,241,236,0.7); }

.btn--ghost-nav{
  padding: 11px 22px;
  font-size: 0.85rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 24px 0;
  transition: padding .4s var(--ease), background-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header__inner{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark{ height: 32px; width: auto; flex-shrink: 0; }

.brand__text{ display: flex; flex-direction: column; line-height: 1.25; }
.brand__text strong{
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-on-light);
}
.brand__text small{
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petrol-500);
}

@media (max-width: 420px){
  .brand__text small{ display: none; }
}

.site-nav__list{
  display: none;
  gap: 32px;
  align-items: center;
}
.site-nav__list a{
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-on-light);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s ease;
}
.site-nav__list a::after{
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: var(--gradient-brand);
  transition: right .35s var(--ease);
}
.site-nav__list a:hover::after,
.site-nav__list a[aria-current="page"]::after{ right: 0; }
.site-nav__list a[aria-current="page"]{ color: var(--petrol-500); }

.site-nav__social{
  display: none;
  align-items: center;
  gap: 14px;
  padding-left: 20px;
  margin-left: 4px;
  border-left: 1px solid var(--line-light);
}
.site-nav__social a{
  display: inline-flex;
  color: var(--text-on-light);
  transition: color .3s ease, transform .3s var(--ease);
}
.site-nav__social a:hover{ color: var(--petrol-500); transform: translateY(-2px); }
.site-nav__social svg{ width: 19px; height: 19px; }

.site-header__actions{ display: flex; align-items: center; gap: 6px; }

.site-header .btn--ghost-nav{ display: none; color: var(--text-on-light); border-color: rgba(16,38,45,0.28); }

.site-header[data-state="scrolled"]{
  padding: 14px 0;
  background: rgba(247,245,241,0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 8px 30px -14px rgba(10,26,32,0.18);
}

/* Mobile menu toggle */
.menu-toggle{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  z-index: 210;
}
.menu-toggle span{
  display: block; height: 2px; width: 24px;
  background: var(--text-on-light);
  transition: transform .35s var(--ease), opacity .35s var(--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); }

.mobile-nav{
  position: fixed; inset: 0;
  z-index: 190;
  background: var(--off-white-2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.mobile-nav.is-open{ opacity: 1; visibility: visible; }
.mobile-nav nav{ text-align: center; display: flex; flex-direction: column; gap: 36px; align-items: center; }
.mobile-nav ul{ display: flex; flex-direction: column; gap: 22px; }
.mobile-nav a{
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--text-on-light);
}
.mobile-nav a[aria-current="page"]{ color: var(--petrol-500); }
.mobile-nav__social{ display: flex; gap: 20px; }
.mobile-nav__social a{ font-family: var(--font-sans); font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--petrol-500); }

@media (min-width: 1024px){
  .site-nav__list{ display: flex; }
  .site-nav__social{ display: flex; }
  .site-header .btn--ghost-nav{ display: inline-flex; }
  .menu-toggle{ display: none; }
}

/* ==========================================================================
   SECTIONS — shared
   ========================================================================== */
.section{
  position: relative;
  padding-block: clamp(72px, 10vw, 130px);
}
.section--dark{ background: var(--petrol-800); color: var(--text-on-dark); }
.section--tint{ background: var(--off-white-2); }
.section--white{ background: var(--white); }

.section-heading{ max-width: 720px; margin-bottom: 52px; }
.section-heading--center{ margin-inline: auto; text-align: center; }
.section-heading--split{
  display: flex; flex-wrap: wrap; gap: 32px 60px;
  justify-content: space-between; align-items: flex-end;
  max-width: none;
}
.section-heading--split h2{ max-width: 560px; margin-bottom: 0; }
.section-heading__lead{ max-width: 420px; font-size: 1.02rem; }
.section--dark .section-heading__lead,
.section--dark p{ color: var(--text-on-dark-muted); }
p{ color: var(--text-on-light-muted); }

/* ==========================================================================
   PAGE HERO (subpáginas: Consultório / Cirurgias / Contato)
   ========================================================================== */
.page-hero{
  position: relative;
  padding-top: clamp(150px, 22vw, 210px);
  padding-bottom: clamp(64px, 8vw, 96px);
  background: var(--off-white);
  overflow: hidden;
}
.page-hero::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(48% 60% at 88% 0%, rgba(19,170,186,0.10), transparent 70%);
  pointer-events: none;
}
.page-hero__inner{ position: relative; max-width: 760px; }
.page-hero h1{
  font-size: clamp(2.1rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 500;
  margin-block: 14px 18px;
}
.page-hero p{ font-size: clamp(1rem, .95rem + .3vw, 1.1rem); max-width: 56ch; }
.page-hero__crumb{ display: flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--text-on-light-muted); }
.page-hero__crumb a{ color: var(--petrol-500); font-weight: 600; }

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  color: var(--text-on-light);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 45% at 84% 12%, rgba(19,170,186,0.14), transparent 70%),
    radial-gradient(45% 38% at 6% 92%, rgba(0,97,119,0.10), transparent 70%);
  pointer-events: none;
}

.hero__media{
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 44%;
  overflow: hidden;
}
.hero__media-clip{ width: 100%; height: 100%; overflow: hidden; clip-path: inset(0 0 0 0); }
.hero__media img{
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transform: scale(1.06);
}
.hero__media-fade{
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--off-white) 0%, rgba(247,245,241,0.15) 26%, transparent 55%),
              linear-gradient(0deg, var(--off-white) 0%, transparent 20%);
}

.hero__watermark{
  position: absolute;
  left: 2%;
  bottom: -6%;
  height: 78%;
  width: auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 900px){ .hero__watermark{ display: none; } }

.hero__content{
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}
.hero__title{
  display: flex;
  flex-direction: column;
  font-size: clamp(2.3rem, 1.5rem + 4.2vw, 4.5rem);
  font-weight: 500;
  margin-block: 20px 24px;
  max-width: 15ch;
  color: var(--text-on-light);
}
.hero__title span{ display: block; }
.hero__title-em{ font-style: italic; font-weight: 400; color: var(--petrol-500); }
.hero__subtitle{
  max-width: 46ch;
  font-size: clamp(1rem, .95rem + .3vw, 1.15rem);
  margin-bottom: 34px;
}
.hero__actions{ display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero__credentials{
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 0.75rem; letter-spacing: 0.16em; font-weight: 600;
  color: var(--text-on-light-muted);
}
.hero__credentials li{ position: relative; padding-left: 16px; }
.hero__credentials li::before{
  content:""; position:absolute; left:0; top:50%; translate: 0 -50%;
  width:6px; height:6px; border-radius:50%; background: var(--teal-400);
}
.hero__credentials li:first-child{ padding-left: 0; }
.hero__credentials li:first-child::before{ display:none; }

.scroll-cue{
  position: absolute;
  left: var(--gutter); bottom: 32px;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(16,38,45,0.22);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span{
  position: absolute; top: 8px; left: 50%; translate: -50% 0;
  width: 4px; height: 8px; border-radius: 2px;
  background: var(--petrol-500);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{ opacity:1; transform: translate(-50%,0); }
  70%{ opacity:0; transform: translate(-50%,16px); }
  100%{ opacity:0; transform: translate(-50%,0); }
}
@media (prefers-reduced-motion: reduce){ .scroll-cue span{ animation: none; } }

@media (max-width: 900px){
  .hero{ padding-top: 130px; align-items: flex-start; }
  .hero__media{ position: relative; width: 100%; height: 42vh; margin-bottom: 28px; order: -1; }
  .hero__media-fade{ background: linear-gradient(0deg, var(--off-white) 0%, transparent 30%), linear-gradient(180deg, rgba(247,245,241,0.4) 0%, transparent 30%); }
  .hero{ display: block; }
  .scroll-cue{ display: none; }
}

/* ==========================================================================
   ABOUT (resumo na home)
   ========================================================================== */
.about{
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.about__images{ position: relative; max-width: 420px; margin-inline: auto; }
.about__img-main{
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}
.about__img-main img{ width: 100%; height: 100%; object-fit: cover; }
.about__img-secondary{
  position: absolute;
  width: 46%;
  right: -8%;
  bottom: -10%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  box-shadow: 0 24px 50px -18px rgba(10,26,32,0.28);
  border: 6px solid var(--off-white);
}
.about__img-secondary img{ width: 100%; height: 100%; object-fit: cover; }
.about__accent-line{
  position: absolute;
  left: -22px; top: 10%;
  width: 3px; height: 60%;
  background: var(--gradient-brand);
  border-radius: 3px;
}

.about__content h2{ font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.5rem); }
.about__content p{ margin-bottom: 16px; max-width: 60ch; }

.credentials-list{ margin-top: 32px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line-light); }
.credentials-list li{
  display: flex; justify-content: space-between; gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.95rem;
}
.credentials-list__label{
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--petrol-500);
  flex-shrink: 0; padding-top: 2px;
}
.credentials-list li > span:last-child{ text-align: right; font-weight: 500; color: var(--text-on-light); }

@media (min-width: 900px){
  .about{ grid-template-columns: 0.85fr 1fr; gap: 90px; }
  .about__images{ margin-inline: 0; max-width: none; }
}

/* ==========================================================================
   QUOTE BAND
   ========================================================================== */
.quote-band{
  position: relative;
  min-height: 58vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--petrol-900);
}
.quote-band__img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.12);
}
.quote-band__overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,19,25,0.55) 0%, rgba(7,19,25,0.15) 45%, rgba(7,19,25,0.78) 100%);
}
.quote-band__text{
  position: relative; z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 56px var(--gutter) 64px;
  text-align: center;
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
}
.quote-band__text cite{
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-300);
}

/* ==========================================================================
   TABS / PROCEDIMENTOS (usado em Cirurgias)
   ========================================================================== */
.tabs{ display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.tabs__btn{
  padding: 11px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--line-light);
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-on-light-muted);
  transition: all .35s var(--ease);
}
.tabs__btn.is-active{
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
}

.proc-panel{ display: none; }
.proc-panel.is-active{ display: block; }
.proc-panel__intro{ margin-bottom: 28px; font-size: 1.02rem; max-width: 55ch; }

.proc-list{
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-light);
}
.proc-list li{
  display: flex; align-items: baseline; gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left .35s var(--ease), color .3s ease;
}
.proc-list li:hover{ padding-left: 14px; color: var(--petrol-500); }
.proc-list__index{
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--petrol-500);
  flex-shrink: 0;
}
.proc-list__name{
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem);
  font-weight: 400;
  color: var(--text-on-light);
}
.proc-list li:hover .proc-list__name{ color: var(--petrol-500); }

@media (min-width: 860px){
  .proc-list{ grid-template-columns: 1fr 1fr; column-gap: 60px; }
}

/* Cards de categoria (topo da página Cirurgias) */
.surgery-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.surgery-card{
  position: relative;
  padding: 32px 28px;
  border-radius: 14px;
  background: var(--off-white-2);
  border: 1px solid var(--line-light);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background-color .4s var(--ease);
}
.surgery-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -24px rgba(10,26,32,0.22);
  border-color: transparent;
  background: var(--white);
}
.surgery-card__icon{
  width: 44px; height: 44px;
  margin-bottom: 20px;
  color: var(--petrol-500);
}
.surgery-card__icon svg{ width: 100%; height: 100%; }
.surgery-card h3{ font-size: 1.2rem; font-weight: 500; margin-bottom: 8px; color: var(--text-on-light); }
.surgery-card p{ font-size: .92rem; margin-bottom: 0; }

@media (min-width: 700px){
  .surgery-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px){
  .surgery-grid{ grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   ESTRUTURA (Consultório)
   ========================================================================== */
.structure-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.structure-grid__main{ border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.structure-grid__main img{ width: 100%; height: 100%; object-fit: cover; }
.structure-grid__side{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.structure-grid__side figure{ border-radius: 10px; overflow: hidden; }
.structure-grid__side img{ width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.structure-grid__side figcaption{
  font-size: 0.8rem;
  padding: 10px 2px 0;
  color: var(--text-on-light-muted);
}

@media (min-width: 900px){
  .structure-grid{ grid-template-columns: 1.3fr 1fr; align-items: stretch; }
  .structure-grid__main{ aspect-ratio: auto; }
  .structure-grid__side{ grid-template-columns: 1fr; }
  .structure-grid__side img{ aspect-ratio: auto; height: calc((100% - 32px)/3); }
}

/* ==========================================================================
   CLÍNICA / LOCALIZAÇÃO (Consultório + Contato)
   ========================================================================== */
.clinic{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.clinic__content p{ max-width: 52ch; margin-bottom: 28px; }
.clinic__info{ display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.clinic__info dt{
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--petrol-500); margin-bottom: 6px;
}
.clinic__info dd{ font-size: 1.05rem; color: var(--text-on-light); }
.clinic__map{
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3;
  filter: grayscale(0.15) contrast(1.03);
  border: 1px solid var(--line-light);
}
.clinic__map iframe{ width: 100%; height: 100%; border: 0; }

@media (min-width: 900px){
  .clinic{ grid-template-columns: 1fr 1fr; gap: 70px; }
}

/* ==========================================================================
   REDES SOCIAIS — faixa de destaque (Instagram)
   ========================================================================== */
.social-band{
  position: relative;
  overflow: hidden;
  background: var(--gradient-brand);
  color: #fff;
}
.social-band__inner{
  display: flex; flex-direction: column; gap: 26px;
  align-items: center; text-align: center;
  padding-block: clamp(56px, 8vw, 90px);
}
.social-band .eyebrow{ background: none; -webkit-text-fill-color: initial; color: rgba(255,255,255,0.85); }
.social-band h2{ color: #fff; margin-bottom: 6px; }
.social-band p{ color: rgba(255,255,255,0.85); max-width: 56ch; }
.social-band__link{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.5);
  font-weight: 600;
  transition: transform .4s var(--ease), background-color .4s var(--ease);
}
.social-band__link:hover{ transform: translateY(-3px); background: rgba(255,255,255,0.22); }
.social-band__link svg{ width: 22px; height: 22px; }

/* ==========================================================================
   CTA STRIP — chamada final (subpáginas)
   ========================================================================== */
.cta-strip{ background: var(--petrol-800); color: var(--text-on-dark); }
.cta-strip__inner{
  padding-block: clamp(56px, 8vw, 84px);
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
}
.cta-strip h2{ color: var(--text-on-dark); margin-bottom: 0; max-width: 20ch; }
.cta-strip p{ color: var(--text-on-dark-muted); max-width: 52ch; }
.cta-strip__actions{ display: flex; flex-wrap: wrap; gap: 16px; }

@media (min-width: 900px){
  .cta-strip__inner{ flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
}

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}
.contact-card{
  display: flex; flex-direction: column; gap: 10px;
  min-width: 0;
  padding: 30px 28px;
  border-radius: 12px;
  border: 1px solid var(--line-light);
  background: var(--off-white-2);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.contact-card__label,
.contact-card__value,
.contact-card__cta{ overflow-wrap: anywhere; }
a.contact-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(16,38,45,0.22);
  border-color: transparent;
}
.contact-card--highlight{
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}
.contact-card__label{
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  opacity: 0.75;
}
.contact-card--highlight .contact-card__label{ opacity: 0.85; }
.contact-card__value{ font-family: var(--font-serif); font-size: 1.3rem; color: var(--text-on-light); }
.contact-card--highlight .contact-card__value{ color: #fff; }
.contact-card__cta{ font-size: 0.85rem; font-weight: 600; margin-top: 6px; }

@media (min-width: 700px){
  .contact-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px){
  .contact-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact-card{ padding: 26px 22px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--petrol-900); color: var(--text-on-dark); }
.site-footer__inner{
  padding-block: 70px 50px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
.brand--footer .brand__mark{ height: 44px; }
.brand--footer .brand__text strong{ font-size: 1.2rem; color: var(--text-on-dark); }
.brand--footer .brand__text small{ color: var(--teal-300); }
.site-footer__brand p{ margin-top: 18px; color: var(--text-on-dark-muted); max-width: 32ch; }
.site-footer__social{ display: flex; gap: 14px; margin-top: 22px; }
.site-footer__social a{
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(243,241,236,0.22);
  color: var(--text-on-dark);
  transition: border-color .3s ease, background-color .3s ease, transform .3s var(--ease);
}
.site-footer__social a:hover{ background: var(--gradient-brand); border-color: transparent; transform: translateY(-3px); }
.site-footer__social svg{ width: 18px; height: 18px; }

.site-footer__nav{ display: flex; flex-direction: column; gap: 14px; }
.site-footer__nav a, .site-footer__contact a{ color: var(--text-on-dark-muted); font-size: 0.95rem; transition: color .3s ease; }
.site-footer__nav a:hover, .site-footer__contact a:hover{ color: var(--teal-300); }
.site-footer__contact{ display: flex; flex-direction: column; gap: 14px; }

.site-footer__bottom{ border-top: 1px solid rgba(243,241,236,0.1); }
.site-footer__bottom-inner{
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-on-dark-muted);
}

@media (min-width: 700px){
  .site-footer__inner{ grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ==========================================================================
   WHATSAPP — botão flutuante (azul da marca)
   ========================================================================== */
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 250;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 12px 30px -8px rgba(0,97,119,0.55);
  color: #fff;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), width .4s var(--ease), padding .4s var(--ease);
  overflow: hidden;
  white-space: nowrap;
}
.whatsapp-float::before{
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-300);
  opacity: 0.55;
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse{
  0%{ transform: scale(0.85); opacity: 0.5; }
  70%{ transform: scale(1.35); opacity: 0; }
  100%{ transform: scale(1.35); opacity: 0; }
}
.whatsapp-float svg{ width: 27px; height: 27px; flex-shrink: 0; position: relative; z-index: 1; }
.whatsapp-float__label{
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 600;
  transition: max-width .4s var(--ease), opacity .3s ease, margin .4s var(--ease);
}
.whatsapp-float:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(0,97,119,0.65);
}
@media (min-width: 700px){
  .whatsapp-float{ padding-inline: 20px; width: auto; border-radius: 999px; gap: 10px; }
  .whatsapp-float:hover .whatsapp-float__label{ max-width: 160px; opacity: 1; margin-left: 2px; }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float::before{ animation: none; }
}

/* ==========================================================================
   SCROLL REVEAL + IMAGE REVEAL (fallback CSS — enhanced by GSAP when available)
   ========================================================================== */
.has-js .reveal-up{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}
.reveal-up.is-visible{ opacity: 1; transform: translateY(0); }

.has-js .reveal-img{ overflow: hidden; }
.has-js .reveal-img img{
  transform: scale(1.15);
  transition: transform 1.1s var(--ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}
.reveal-img.is-visible img{ transform: scale(1); }

@media (prefers-reduced-motion: reduce){
  .has-js .reveal-up{ opacity: 1; transform: none; transition: none; }
  .has-js .reveal-img img{ transform: none; transition: none; }
}

/* JS-enabled: let GSAP fully own the animation (prevents double-timing conflicts) */
.js-gsap .reveal-up{ transition: none; }
.js-gsap .reveal-img img{ transition: none; }
