/* ══════════════════════════════════════════════════
   KARINA PINHEIRO ADVOCACIA — style.css v4
══════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --navy:         #1F354A;
  --navy-dark:    #162637;
  --navy-mid:     #2a4660;
  --navy-light:   #3d5f7f;
  --rose:         #D5A09A;
  --rose-dark:    #c08880;
  --rose-light:   #e8c4bf;
  --rose-pale:    #faf3f2;
  --white:        #ffffff;
  --off-white:    #fafaf8;
  --gray-100:     #f5f4f2;
  --gray-200:     #e8e6e3;
  --gray-300:     #d0cdc9;
  --gray-500:     #8a8680;
  --gray-700:     #4a4744;
  --gray-900:     #1c1a18;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --section-py:   108px;
  --container:    1140px;
  --radius:       14px;
  --radius-sm:    9px;
  --radius-full:  999px;
  --shadow-sm:    0 2px 10px rgba(31,53,74,.08);
  --shadow-md:    0 10px 40px rgba(31,53,74,.13);
  --shadow-lg:    0 24px 64px rgba(31,53,74,.18);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── UTILITÁRIOS ─────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--rose-dark); }

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  margin: 22px auto 0;
}
.section-header .section-desc { max-width: 500px; margin: 0 auto; }

/* ── BOTÕES ──────────────────────────────────────── */
/* Transições sem var() para garantir compatibilidade total */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  transition: background-color .35s ease, border-color .35s ease,
              color .35s ease, transform .35s ease, box-shadow .35s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31,53,74,.32);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--rose-pale);
  border-color: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn--full { width: 100%; justify-content: center; }

/* ── ANIMAÇÕES ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealFallback {
  to { opacity: 1; transform: translate(0,0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .35; transform: scaleY(.55); }
}
@keyframes carouselLTR {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@keyframes wpPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.08); }
}

/* Hero fade-ins (rápidos — sem var() no shorthand) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation-name: fadeUp;
  animation-duration: .65s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.fade-in--d1 { animation-delay: .1s; }
.fade-in--d2 { animation-delay: .2s; }
.fade-in--d3 { animation-delay: .32s; }
.fade-in--d4 { animation-delay: .44s; }

/* Reveals lentos — transition + fallback CSS */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.reveal.revealed  { opacity: 1; transform: translateY(0); }

.reveal--right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.reveal--right.revealed { opacity: 1; transform: translateX(0); }

/* Fallback CSS: revela automaticamente após 1.8s caso JS não dispare */
.reveal:not(.revealed)       { animation-name: revealFallback; animation-duration: 1s; animation-delay: 1.8s; animation-fill-mode: forwards; animation-timing-function: ease; }
.reveal--right:not(.revealed){ animation-name: revealFallback; animation-duration: 1s; animation-delay: 1.9s; animation-fill-mode: forwards; animation-timing-function: ease; }

/* ══════════════════════════════════════════════════
   NAVBAR — transparente no topo → flutuante após scroll
══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  /* Todas as propriedades transicionam suavemente */
  transition: top .45s ease, left .45s ease, right .45s ease,
              background .45s ease, border-radius .45s ease,
              padding .45s ease, box-shadow .45s ease;
}

/* Estado flutuante: ativa após scroll de ~150px */
.navbar.scrolled {
  top: 10px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 0;
  box-shadow: 0 8px 32px rgba(31,53,74,.14), 0 0 0 1px rgba(31,53,74,.06);
}

.navbar__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo — duas versões: clara (sobre hero) e escura (flutuante) */
.navbar__logo { display: flex; align-items: center; }
.navbar__logo-img { height: 36px; width: auto; transition: opacity .4s ease; }

/* Por padrão (transparente): exibe versão clara, oculta escura */
.navbar__logo-img--light { opacity: 1;  display: block; }
.navbar__logo-img--dark  { opacity: 0;  display: none; }

/* Após scroll: inverte */
.navbar.scrolled .navbar__logo-img--light { opacity: 0; display: none; }
.navbar.scrolled .navbar__logo-img--dark  { opacity: 1; display: block; }

/*
  Enquanto não tiver duas versões diferentes do logo,
  ambas as classes apontam para a mesma imagem — o efeito
  só será notado visualmente quando logos diferentes forem usados.
*/

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__link {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s ease;
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .3s ease;
}
.navbar__link:hover { color: var(--white); }
.navbar__link:hover::after { width: 100%; }
.navbar.scrolled .navbar__link { color: var(--gray-700); }
.navbar.scrolled .navbar__link:hover { color: var(--navy); }

.navbar__link--cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease !important;
}
.navbar__link--cta::after { display: none; }
.navbar__link--cta:hover {
  background: var(--rose-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(213,160,154,.4);
}

/* Toggle mobile */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.navbar.scrolled .navbar__toggle span { background: var(--navy); }
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   HERO — imagem de fundo real
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Imagem real inserida abaixo */
  background-color: var(--navy);
  background-image: url('https://karinapinheiro.com.br/wp-content/uploads/2024/06/img-fundo-hero-desktop-v2.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
/*
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://karinapinheiro.com.br/wp-content/uploads/2024/06/img-fundo-hero-desktop-v2.png') center right / cover no-repeat;
}
  */

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(22,38,55,.82) 0%,
    rgba(22,38,55,.6)  55%,
    rgba(22,38,55,.25) 100%
  );
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 130px 40px 90px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 300;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 26px;
  max-width: 680px;
}
.hero__title em { font-style: italic; color: var(--rose-light); }

.hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 40px;
}
.hero__desc strong { color: var(--rose-light); font-weight: 500; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__badges { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero__badge { display: flex; flex-direction: column; }
.hero__badge strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--rose-light);
  line-height: 1;
}
.hero__badge span {
  font-size: 10.5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}
.hero__badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(213,160,154,.22);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
  font-family: var(--font-head);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(213,160,154,.5), transparent);
  animation-name: scrollPulse;
  animation-duration: 2.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* ══════════════════════════════════════════════════
   ESPECIALIDADES — CARROSSEL
   .carousel-wrap tem overflow:hidden e clippa o track.
   .specialties tem padding-top extra para acomodar o
   efeito hover de elevar os cards sem clippar.
══════════════════════════════════════════════════ */
.specialties {
  padding: var(--section-py) 0 0;
  background: var(--white);
}

.carousel-wrap {
  /* padding-top garante espaço para o translateY(-5px) do hover */
  padding-top: 24px;
  padding-bottom: var(--section-py);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.carousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation-name: carouselLTR;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.carousel__track:hover,
.carousel__track:focus-within {
  animation-play-state: paused;
}

.spec-card {
  flex-shrink: 0;
  width: 220px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color .5s ease, box-shadow .5s ease, transform .5s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.spec-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.spec-card:hover {
  border-color: var(--rose-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.spec-card:hover::before { transform: scaleX(1); }
.spec-card__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
  opacity: .65;
}
.spec-card h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════
   CTA 1 — DUAL IMAGE (dor | solução)
   Substitua as URLs de background-image abaixo
   pelas imagens finais entregues pela Dra. Karina.
══════════════════════════════════════════════════ */
.cta1 {
  display: flex;
  min-height: 380px;
}

.cta1__half {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 48px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: flex .6s ease;
}
.cta1:hover .cta1__half { flex: .8; }
.cta1__half:hover { flex: 1.2 !important; }

/* Imagens de fundo — placeholder público Unsplash até receber as finais */
.cta1__half--pain {
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1200&auto=format');
}
.cta1__half--solution {
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?q=80&w=1200&auto=format');
}

.cta1__half-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta1__half--pain .cta1__half-overlay {
  background: rgba(22,38,55,.72);
}
.cta1__half--solution .cta1__half-overlay {
  background: rgba(192,136,128,.62);
}

.cta1__half-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px;
}
.cta1__eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 16px;
}
.cta1__headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
}
.cta1__headline em { font-style: italic; color: var(--rose-light); }
.cta1__solution-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--navy);
}
.testimonials .section-title    { color: var(--white); }
.testimonials .section-title em { color: var(--rose-light); }
.testimonials .section-label    { color: var(--rose-light); }
.testimonials .section-header::after { background: linear-gradient(to bottom, rgba(213,160,154,.5), transparent); }

.testimonials__reputation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  padding: 28px 32px;
  border: 1px solid rgba(213,160,154,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}
.testimonials__stars-block,
.testimonials__count-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials__stars {
  color: #f5c518;
  font-size: 20px;
  letter-spacing: 3px;
}
.testimonials__stars-meta strong,
.testimonials__count-block strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.testimonials__stars-meta span,
.testimonials__count-block span {
  font-size: 12px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.45);
  display: block;
  margin-top: 3px;
}
.testimonials__reputation-divider {
  width: 1px;
  height: 44px;
  background: rgba(213,160,154,.18);
}
.testimonials__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all .4s ease;
}
.testimonials__google-badge:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.05);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  align-items: stretch;
}

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(213,160,154,.18);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: background .5s ease, border-color .5s ease, transform .5s ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(213,160,154,.38);
  transform: translateY(-5px);
}
.testimonial-card__stars {
  color: #f5c518;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(213,160,154,.18);
  border: 1px solid rgba(213,160,154,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--rose-light);
  flex-shrink: 0;
}
.testimonial-card__author-info strong {
  display: block;
  font-size: 13.5px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
}
.testimonial-card__author-info span {
  font-size: 11.5px;
  color: rgba(255,255,255,.42);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 3px;
  display: block;
}

/* ══════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════ */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

/* Foto: grande e centralizada na div esquerda */
.about__photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.about__photo-img {
  width: 240px;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--rose-light);
  box-shadow: 0 16px 48px rgba(31,53,74,.14), 0 0 0 6px rgba(213,160,154,.12);
  display: block;
}

.about__ornament {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), transparent);
  margin: 22px 0 26px;
  border-radius: 2px;
}
.about__text {
  font-size: 15.5px;
  color: var(--gray-700);
  line-height: 1.88;
  margin-bottom: 16px;
}
.about__text strong { color: var(--navy); font-weight: 600; }
.about__credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.about__credential svg { color: var(--rose); flex-shrink: 0; }

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__highlight-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: background .5s ease, border-color .5s ease, transform .5s ease, box-shadow .5s ease;
}
.about__highlight-card:hover {
  background: var(--white);
  border-color: var(--rose-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.about__highlight-icon { font-size: 26px; margin-bottom: 13px; }
.about__highlight-card h3 {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.about__highlight-card p { font-size: 13px; color: var(--gray-500); line-height: 1.72; }

/* ══════════════════════════════════════════════════
   CTA 2 — PARALLAX
   Substitua a URL de background-image pela imagem final.
══════════════════════════════════════════════════ */
.cta2 {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background-color: var(--navy-mid);
  /* Placeholder Unsplash — substituir pela imagem final */
  background-image: url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?q=80&w=1400&auto=format');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.cta2__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,38,55,.72);
  pointer-events: none;
}
.cta2__container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 40px;
}
.cta2__eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.cta2__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 14px;
}
.cta2__title em { font-style: italic; color: var(--rose-light); }
.cta2__desc { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 36px; }
.cta2__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta2__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: color .4s ease, border-color .4s ease, background .4s ease, transform .4s ease;
}
.cta2__social-link:hover {
  color: var(--white);
  border-color: var(--rose);
  background: rgba(213,160,154,.15);
  transform: translateY(-2px);
}
.cta2__social-link--cta {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}
.cta2__social-link--cta:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.faq .section-header .section-desc {
  text-align: center;
  display: block;
  margin: 0 auto;
}

.faq__list { max-width: 760px; margin: 0 auto; }

.faq__item { border-bottom: 1px solid var(--gray-200); }
.faq__item:first-child { border-top: 1px solid var(--gray-200); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: color .35s ease;
}
.faq__question:hover { color: var(--rose-dark); }
.faq__question[aria-expanded="true"] { color: var(--rose-dark); }

.faq__icon {
  flex-shrink: 0;
  color: var(--rose);
  transition: transform .4s ease;
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }

/* Resposta: escondida por default, visível com classe .open */
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s ease, padding .4s ease;
  padding: 0 4px;
}
.faq__answer.open {
  max-height: 400px; /* grande o suficiente para qualquer resposta */
  padding: 0 4px 24px;
}
.faq__answer p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.85;
}

/* ══════════════════════════════════════════════════
   CONTATO
══════════════════════════════════════════════════ */
.contact {
  padding: var(--section-py) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.contact__header {
  text-align: center;
  margin-bottom: 56px;
}
.contact__header .section-title { margin-bottom: 16px; }
.contact__subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact__photo-col {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
}
.contact__photo-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  display: block;
}
.contact__form-col { display: flex; flex-direction: column; }

.contact__form { display: flex; flex-direction: column; gap: 20px; flex: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--gray-700);
}
.req { color: var(--rose); }
.form-field input,
.form-field textarea {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--gray-900);
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-300); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31,53,74,.08);
}
.form-field input.error,
.form-field textarea.error {
  border-color: #d9534f;
  box-shadow: 0 0 0 3px rgba(217,83,79,.08);
}
.form-error {
  font-size: 11.5px;
  color: #d9534f;
  display: none;
  font-family: var(--font-head);
}
.form-error.visible { display: block; }
.contact__form-note { text-align: center; font-size: 12px; color: var(--gray-500); }
.contact__form-success {
  text-align: center;
  padding: 60px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact__form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,.1);
  color: #16a34a;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact__form-success h3 { font-family: var(--font-display); font-size: 26px; color: var(--navy); margin-bottom: 10px; }
.contact__form-success p  { color: var(--gray-500); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 32px;
  color: rgba(255,255,255,.7);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer__logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer__name  { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.footer__oab   { font-family: var(--font-head); font-size: 10.5px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; }
.footer__desc  { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.48); margin-bottom: 20px; }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  transition: color .35s ease;
}
.footer__social:hover { color: var(--rose-light); }
.footer__social svg { color: var(--rose); }
.footer__links h4, .footer__contact-info h4 {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 18px;
}
.footer__links a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.56);
  margin-bottom: 10px;
  transition: color .3s ease;
}
.footer__links a:hover { color: var(--rose-light); }
.footer__contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.52);
  margin-bottom: 13px;
  line-height: 1.6;
}
.footer__contact-info svg { flex-shrink: 0; color: var(--rose); margin-top: 2px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.28);
}

/* ══════════════════════════════════════════════════
   CRÉDITO + VOLTAR AO INÍCIO
══════════════════════════════════════════════════ */
.site-credit {
  background: var(--gray-900);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.site-credit__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.12);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  transition: color .35s ease, border-color .35s ease, background .35s ease, transform .35s ease;
}
.site-credit__back:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}
.site-credit__text { font-family: var(--font-head); font-size: 11px; color: rgba(255,255,255,.28); letter-spacing: .5px; }
.site-credit__text a { color: var(--rose); transition: opacity .3s ease; }
.site-credit__text a:hover { opacity: .8; }

/* ══════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .4s ease, box-shadow .4s ease;
  animation-name: wpPulse;
  animation-duration: 3.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}

/* ══════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid             { grid-template-columns: 1fr; gap: 52px; }
  .about__highlights       { grid-template-columns: 1fr 1fr; }
  .footer__grid            { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials__grid      { grid-template-columns: repeat(2,1fr); }
  .contact__grid           { grid-template-columns: 1fr; gap: 40px; }
  .contact__photo-col,
  .contact__photo-img      { min-height: 320px; }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }
  .container { padding: 0 24px; }

  /* Navbar: no mobile vira flutuante de forma simplificada */
  .navbar               { background: var(--navy); padding: 14px 0; }
  .navbar.scrolled      { top: 8px; left: 10px; right: 10px; padding: 10px 0; }
  .navbar__container    { padding: 0 20px; }

  /* Menu mobile */
  .navbar__nav {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 8px 0 16px;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .navbar__nav.open      { display: flex; }
  .navbar__link          { color: var(--gray-700) !important; padding: 13px 24px; width: 100%; font-size: 12.5px; }
  .navbar__link::after   { display: none; }
  .navbar__link--cta     { margin: 8px 16px 0; width: calc(100% - 32px); justify-content: center; }
  .navbar__toggle        { display: flex; }

  /* Hero */
  .hero__container { padding: 110px 24px 70px; }
  .hero__title     { font-size: clamp(36px, 9vw, 52px); }
  .hero__actions   { flex-direction: column; }

  /* CTA1 */
  .cta1            { flex-direction: column; }
  .cta1__half      { min-height: 280px; padding: 56px 28px; }
  .cta1:hover .cta1__half,
  .cta1__half:hover { flex: 1 !important; }

  /* Testimonials */
  .testimonials__grid        { grid-template-columns: 1fr; }
  .testimonials__reputation  { gap: 20px; padding: 20px; }
  .testimonials__reputation-divider { display: none; }

  /* About */
  .about__highlights   { grid-template-columns: 1fr; }
  .about__photo-img    { width: 180px; height: 220px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid  { grid-template-columns: 1fr; gap: 28px; }
  .site-credit   { flex-direction: column; gap: 14px; padding: 20px 24px; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero__badges { gap: 12px; }
  .hero__badge strong { font-size: 24px; }
  .cta2__container { padding: 60px 24px; }
}

/* Parallax desabilitado em mobile */
@media (max-width: 768px) {
  .cta2 { background-attachment: scroll; }
}