/* =========================================================
   Dra. Aline Guimarães de Faria · Landing
   Paleta híbrida: base terrosa dessaturada (clima da ref)
   + dourado da marca nos detalhes e CTAs.
   Fontes: Playfair Display (headlines) + Inter (corpo, apoio, botões)
   ========================================================= */

:root {
  --ink: #20221d;        /* oliva quase preto: header / bloco escuro / footer */
  --ink-2: #181a15;      /* footer */
  --char: #3b3c34;       /* texto escuro neutro */
  --stone: #6f6f63;      /* texto secundário */
  --gold: #bd9a5f;       /* acento / CTA */
  --gold-deep: #a07f49;
  --sage: #8f9079;       /* verde dessaturado de apoio */
  --sand: #d9d3c4;       /* texto claro sobre escuro */
  --paper: #ece8df;      /* fundo claro principal (greige) */
  --paper-2: #e4ded1;    /* greige mais fechado (cards) */
  --line: rgba(59, 60, 52, .18);
  --line-light: rgba(236, 232, 223, .20);

  --serif: "Playfair Display", Georgia, serif;          /* headlines */
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif; /* corpo, apoio, botões */

  --container: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

/* Lenis (scroll suave) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--char);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.eyebrow--light { color: var(--gold); }

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: inherit;
}

.lede {
  font-size: clamp(17px, 1.45vw, 20px);
  color: var(--stone);
  max-width: 60ch;
  margin-top: 22px;
}

.hairline {
  display: block;
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .35;
}

/* =========================================================
   BOTÕES (label + seta em quadradinho, como a referência)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  height: 54px;
  padding-left: 26px;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.btn__arrow {
  width: 40px; height: 40px;
  margin: 0 7px 0 0;
  display: grid; place-items: center;
  border-radius: 5px;
  font-size: 18px; line-height: 0;
  background: rgba(32, 34, 29, .16);
  transition: transform .3s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn--solid { background: var(--gold); color: var(--ink); }
.btn--solid:hover { background: var(--gold-deep); color: var(--paper); }
.btn--lg { height: 60px; }

/* =========================================================
   HEADER (barrinha flutuante, alinhada à moldura do hero)
   ========================================================= */
.header {
  position: fixed;
  top: 14px; left: 14px; right: 14px;
  z-index: 60;
}
.header__bar {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 68px;
  background: linear-gradient(180deg, rgba(48, 48, 40, .46), rgba(32, 34, 29, .40));
  border: 1px solid rgba(236, 232, 223, .18);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  box-shadow: inset 0 1px 0 rgba(236, 232, 223, .12), 0 8px 26px rgba(20, 22, 17, .22);
  transition: background .45s var(--ease), backdrop-filter .45s var(--ease),
              -webkit-backdrop-filter .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.header--scrolled .header__bar {
  background: linear-gradient(180deg, rgba(36, 37, 30, .60), rgba(26, 28, 22, .54));
  border-color: rgba(189, 154, 95, .28);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(236, 232, 223, .16), 0 16px 42px rgba(20, 22, 17, .34);
}

.hcell {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line-light);
}
.header__logo { padding: 0 clamp(18px, 3vw, 34px); color: var(--paper); }
.header__logo svg { width: 126px; height: auto; }

.header__ticks-cell { padding: 0 22px; }
.header__ticks {
  width: 30px; height: 11px;
  background-image: repeating-linear-gradient(90deg, var(--gold) 0 1px, transparent 1px 6px);
  opacity: .6;
}
.header__ig { padding: 0 22px; color: var(--sand); opacity: .8; transition: color .25s, opacity .25s; }
.header__ig:hover { color: var(--gold); opacity: 1; }

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav a {
  font-size: 12.5px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(236, 232, 223, .8);
  padding: 9px 20px;
  border-radius: 7px;
  transition: color .25s, background .25s;
}
.nav a:hover { color: var(--paper); background: rgba(236, 232, 223, .06); }
.nav a.is-active { background: rgba(236, 232, 223, .12); color: var(--paper); }

.header__cta {
  align-self: center;
  display: flex; align-items: center; gap: 12px;
  height: 46px;
  margin-right: 12px;
  padding: 0 8px 0 22px;
  border-radius: 7px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.header__cta:hover { background: var(--gold-deep); color: var(--paper); }
.cta__arrow {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 5px;
  background: rgba(32, 34, 29, .2);
  font-size: 16px; line-height: 0;
  transition: transform .3s var(--ease);
}
.header__cta:hover .cta__arrow { transform: translateX(3px); }

.header__burger {
  display: none;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 60px;
  border: none;
  border-left: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
}
.header__burger span { width: 18px; height: 1.5px; background: var(--paper); transition: transform .3s, opacity .3s; }
.header__burger[aria-expanded="true"] span:first-child { transform: translateY(3.3px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.3px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100svh;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--paper);
  padding: 0 clamp(20px, 6vw, 96px) clamp(120px, 16vh, 184px);
}
/* Espaçador em fluxo: ocupa a primeira tela e revela o hero fixo atrás */
.hero-spacer { height: 100svh; }
.hero__bg {
  position: absolute; inset: 0;
  background: url("assets/hero-desktop.jpg") no-repeat right center / cover;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 34, 29, .9) 0%, rgba(32, 34, 29, .58) 38%, rgba(32, 34, 29, .12) 66%, rgba(32, 34, 29, .4) 100%),
    linear-gradient(0deg, rgba(32, 34, 29, .8) 0%, transparent 44%);
}
.hero__frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(217, 211, 196, .26);
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
}

.hero__content { position: relative; z-index: 3; max-width: 820px; margin-top: auto; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -.005em;
  margin-bottom: 28px;
}
.hero__title em {
  display: block;
  font-family: var(--serif);
  font-style: normal;
  text-transform: none;
  font-weight: 400;
  font-size: 1.42em;
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-top: .06em;
}
.hero__lead {
  font-family: var(--sans);
  font-size: clamp(14px, 1.15vw, 16.5px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.75;
  color: rgba(236, 232, 223, .88);
  max-width: 52ch;
}
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.hero__link {
  position: relative;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(189, 154, 95, .6);
  transition: border-color .3s, color .3s;
}
.hero__link:hover { color: var(--gold); border-color: var(--gold); }

.hero__caption {
  position: absolute;
  left: 50%; bottom: 46px;
  transform: translateX(-50%);
  z-index: 3;
  width: min(640px, 84vw);
  display: flex; align-items: center; gap: 22px;
  color: rgba(236, 232, 223, .82);
  text-align: center;
}
.hero__caption p { display: flex; flex-direction: column; gap: 4px; white-space: nowrap; }
.hero__caption strong { font-family: var(--sans); font-style: italic; font-weight: 500; font-size: 18px; letter-spacing: .02em; }
.hero__caption span { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: rgba(217, 211, 196, .7); }

.hero__scroll {
  position: absolute;
  right: clamp(20px, 6vw, 96px); bottom: 46px;
  z-index: 3;
  width: 30px; height: 50px;
  border: 1px solid rgba(217, 211, 196, .4);
  border-radius: 16px;
  display: flex; justify-content: center;
}
.hero__scroll span { width: 3px; height: 8px; margin-top: 9px; border-radius: 3px; background: var(--gold); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: .2; } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: clamp(80px, 12vh, 150px) 0; position: relative; z-index: 1; scroll-margin-top: 100px; }
.section--about { background: var(--paper); }
.section--areas { background: var(--paper-2); }
.section__head { max-width: 760px; margin-bottom: clamp(48px, 7vh, 80px); }
.section__intro { margin-top: 24px; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.75; color: var(--stone); max-width: 68ch; }

/* A médica */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about__intro .section__title { color: var(--char); }
.about__photo {
  margin: 0;
  position: sticky;
  top: 110px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 928 / 1152;
  border: 1px solid rgba(189, 154, 95, .18);
  box-shadow: 0 24px 60px rgba(20, 22, 17, .16);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__badge {
  position: absolute; left: 16px; bottom: 16px;
  display: flex; gap: 8px;
}
.about__badge span {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper);
  background: rgba(32, 34, 29, .5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(236, 232, 223, .22);
  border-radius: 6px;
  padding: 7px 11px;
}
.about__body { display: flex; flex-direction: column; gap: clamp(36px, 4vw, 54px); }
.about__text { margin-top: 18px; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.8; color: var(--stone); max-width: 60ch; }

.stats { list-style: none; display: flex; gap: clamp(22px, 3.5vw, 50px); flex-wrap: wrap; }
.stats li { display: flex; flex-direction: column; gap: 5px; }
.stats strong { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: 1; color: var(--gold-deep); }
.stats span { font-size: 13px; line-height: 1.4; color: var(--stone); letter-spacing: .01em; max-width: 16ch; }

.timeline { list-style: none; border-left: 1px solid var(--line); padding-left: 30px; }
.timeline li { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 16px 0; }
.timeline li + li { border-top: 1px solid var(--line); }
.timeline li::before {
  content: ""; position: absolute;
  left: -34px; top: 24px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(189, 154, 95, .15);
}
.timeline__year { font-family: var(--sans); font-style: italic; font-size: 20px; color: var(--gold-deep); }
.timeline__txt { font-size: 16px; color: var(--char); }

/* Cabeçalho horizontal (headline à esquerda, apoio à direita) */
.section__head--split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  max-width: none;
  margin-bottom: 0;
}
.section__head--split .eyebrow { margin-bottom: 18px; }
.section__head--split .section__intro { margin-top: 0; max-width: 52ch; }

/* Áreas de atuação (carrossel marquee infinito) */
.carousel {
  position: relative;
  overflow: hidden;
  margin-top: clamp(44px, 7vh, 80px);
  padding: 6px 0 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.carousel__track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.ac-card {
  position: relative;
  flex: 0 0 clamp(264px, 30vw, 356px);
  margin-right: clamp(16px, 2vw, 26px);
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper-2);
}
.ac-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ac-card__panel {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  padding: 17px 18px 19px;
  border-radius: 14px;
  color: var(--paper);
  background: rgba(26, 28, 22, .32);
  border: 1px solid rgba(236, 232, 223, .18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}
.ac-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.16;
  color: #fff;
  margin-bottom: 7px;
}
.ac-card__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .85);
}

/* Conteúdo & educação (editorial) */
.section--content { background: var(--paper); }
.edu { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.edu__media { margin: 0; position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid rgba(189, 154, 95, .16); }
.edu__media img { width: 100%; height: 100%; object-fit: cover; }
.edu__ig-badge {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  font-size: 12px; letter-spacing: .02em; color: var(--paper);
  background: rgba(26, 28, 22, .5);
  border: 1px solid rgba(236, 232, 223, .22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .3s;
}
.edu__ig-badge:hover { background: var(--gold-deep); }
.edu__body { padding-top: 4px; }
.edu__lead { font-size: clamp(17px, 1.45vw, 21px); line-height: 1.7; color: var(--char); margin-bottom: clamp(26px, 3vh, 38px); }
.edu__topics { list-style: none; }
.edu__topics li { padding: 22px 0; border-top: 1px solid var(--line); }
.edu__topics li:first-child { border-top: none; padding-top: 0; }
.edu__topic-tag { display: inline-block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.edu__topics h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 1.9vw, 26px); line-height: 1.2; color: var(--char); margin-bottom: 7px; }
.edu__topics p { font-size: 16px; line-height: 1.62; color: var(--stone); max-width: 56ch; }
.edu__ig { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); border-bottom: 1px solid rgba(189, 154, 95, .5); padding-bottom: 5px; transition: gap .3s var(--ease), color .25s, border-color .25s; }
.edu__ig:hover { gap: 15px; color: var(--gold); border-color: var(--gold); }

/* CTA block (botão Agendar consulta + selo particular) */
.cta-block { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; margin-top: clamp(36px, 5vh, 56px); }
.cta-block--center { align-items: center; text-align: center; }
.cta-note { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.cta-note--light { color: rgba(236, 232, 223, .72); }
.hero .cta-note { margin-top: 16px; }

/* Diferenciais (cartões de vidro sobre foto + overlay da marca) */
.diff-cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: var(--ink);
  padding: clamp(90px, 14vh, 168px) 0;
  scroll-margin-top: 100px;
}
.diff-cta__grid-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(236, 232, 223, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 232, 223, .055) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 35%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 35%, transparent 100%);
}
.diff-cta__glow {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 55% 45% at 72% 12%, rgba(189, 154, 95, .2), transparent 60%),
    radial-gradient(ellipse 50% 50% at 18% 105%, rgba(143, 144, 121, .12), transparent 60%);
  pointer-events: none;
}
.diff-cta__inner { position: relative; z-index: 1; }
.diff-cta__head { max-width: 640px; margin-bottom: clamp(44px, 6vh, 72px); }
.diff-cta .section__title { color: var(--paper); }
.diff-cta__lead { margin-top: 22px; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.75; color: rgba(236, 232, 223, .82); max-width: 50ch; }

.diff-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 22px); }
.diff-card {
  padding: clamp(26px, 2vw, 34px);
  border-radius: 16px;
  background: rgba(42, 44, 35, .34);
  border: 1px solid rgba(236, 232, 223, .16);
  backdrop-filter: blur(15px) saturate(120%);
  -webkit-backdrop-filter: blur(15px) saturate(120%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
  transition: transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}
.diff-card:hover { transform: translateY(-6px); background: rgba(50, 52, 42, .42); border-color: rgba(189, 154, 95, .42); }
.diff-card__mark { display: block; width: 30px; height: 2px; background: var(--gold); margin-bottom: 22px; transition: width .5s var(--ease); }
.diff-card:hover .diff-card__mark { width: 50px; }
.diff-card h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(19px, 1.5vw, 24px); line-height: 1.2; color: var(--paper); margin-bottom: 12px; }
.diff-card p { font-size: 15px; line-height: 1.66; color: rgba(236, 232, 223, .72); }

/* =========================================================
   CONTATO (pré-footer, imagem + overlay da marca + mapa)
   ========================================================= */
.contact-cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  padding: clamp(90px, 14vh, 168px) 0;
}
.contact-cta__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("assets/contato-bg.jpg") no-repeat center / cover;
  transform: scale(1.06);
  will-change: transform;
}
.contact-cta__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(32, 34, 29, .85) 0%, rgba(24, 26, 21, .93) 100%);
}
.contact-cta__head { max-width: 720px; margin-bottom: clamp(48px, 7vh, 78px); }
.contact-cta .section__title { color: var(--paper); }
.contact-cta__lead { margin-top: 22px; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.7; color: rgba(236, 232, 223, .85); max-width: 56ch; }
.contact-cta__panel {
  display: grid; grid-template-columns: 1fr 1.1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(236, 232, 223, .16);
  background: rgba(26, 28, 22, .42);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
}
.contact-cta__action { padding: clamp(32px, 4vw, 52px); display: flex; flex-direction: column; align-items: flex-start; }
.contact-cta__action .cta-note { margin-top: 14px; }
.contact-info { list-style: none; display: grid; gap: 22px; width: 100%; margin-top: 30px; padding-top: 28px; border-top: 1px solid rgba(236, 232, 223, .14); }
.contact-info__label { display: block; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-info p { font-size: 16px; line-height: 1.65; color: rgba(236, 232, 223, .9); }
.contact-info a { border-bottom: 1px solid rgba(189, 154, 95, .5); transition: color .25s, border-color .25s; }
.contact-info a:hover { color: var(--gold); border-color: var(--gold); }

.contact-map { min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.35) contrast(1.05) brightness(.98); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink-2); color: rgba(236, 232, 223, .72); padding: 56px 0; position: relative; z-index: 1; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__logo { color: var(--sand); }
.footer__logo svg { width: 150px; height: auto; }
.footer__meta p { font-size: 13px; letter-spacing: .04em; }
.footer__meta p + p { color: rgba(217, 211, 196, .5); margin-top: 4px; }
.footer__meta .footer__copy { margin-top: 14px; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(217, 211, 196, .4); }
.footer__rd360 { display: inline-flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer__rd360-label { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(217, 211, 196, .42); }
.footer__rd360 img { height: 26px; width: auto; opacity: .92; transition: opacity .25s; }
.footer__rd360:hover img { opacity: 1; }

/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 50;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(24, 26, 21, .3);
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.wa-float:hover { transform: scale(1.08); background: var(--gold-deep); color: var(--paper); }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .about__photo { position: static; max-width: 520px; margin: 0 auto; }
  .edu { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cta__panel { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
}

@media (max-width: 760px) {
  .header__bar { height: 60px; }
  .header__ticks-cell, .header__ig, .header__cta { display: none; }
  .header__logo { border-right: none; }
  .header__burger { display: flex; margin-left: auto; }

  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(24, 26, 21, .97);
    border-bottom: 1px solid var(--line-light);
    backdrop-filter: blur(14px);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s, transform .3s, visibility .3s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 14px 16px; }
  .nav a + a { border-left: none; border-top: 1px solid var(--line-light); }
  .nav a.is-active { background: rgba(236, 232, 223, .08); }

  .diff-grid { grid-template-columns: 1fr; }
  .section__head--split { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .section__head--split .section__intro { max-width: 60ch; }
  .ac-card { flex-basis: clamp(230px, 72vw, 300px); }
  .stats { gap: 22px 36px; }
  .edu__media { max-width: 460px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__rd360 { align-items: flex-start; }
  .hero { padding-bottom: 150px; }
  .hero__bg { background-image: url("assets/hero-mobile.jpg"); background-position: center top; }
  .hero__caption { white-space: normal; gap: 14px; }
  .hero__caption p { white-space: normal; }
  .hero__scroll { display: none; }
  .hero__link { display: none; }
}

/* =========================================================
   MOVIMENTO REDUZIDO
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; transform: none; }
  .hero__scroll span { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .carousel__track { animation: none; }
  .carousel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  html { scroll-behavior: auto; }
}
