/* ============================================================
   DRA. TATIANE RAMOS — Periodontista
   style.css · Vasques Design Studio
   ============================================================ */

/* ==============================
   TOKENS & RESET
============================== */
:root {
  --rose:        #9E6671;
  --rose-light:  #C49099;
  --rose-dark:   #7A4E58;
  --nude:        #F0D9D1;
  --offwhite:    #FDFDFC;
  --cream:       #F4EFEC;
  --olive:       #999B85;
  --olive-bg:    #3D3F35;
  --text-dark:   #2C2422;
  --text-mid:    #5C4A4E;
  --text-muted:  #9A8588;
  --border:      rgba(158,102,113,0.15);
  --border-soft: rgba(158,102,113,0.08);
  --max-w:       1140px;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'Fira Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--offwhite);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ==============================
   UTILITIES
============================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--rose);
  margin: 24px 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 17px 34px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(158,102,113,0.28);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(158,102,113,0.36);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--rose); border-color: var(--rose); }

/* ==============================
   SCROLL REVEAL
============================== */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   HEADER
============================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,253,252,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s var(--ease);
}
header.scrolled { box-shadow: 0 1px 20px rgba(158,102,113,0.08); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo
   — tatiane_ramos_website_logo_01.png  → versão escura (padrão no header claro)
   — tatiane_ramos_website_logo_02.png  → versão clara (para fundo escuro, se necessário) */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 38px; width: auto; display: block; }

/* Fallback texto — remover quando a logo estiver disponível */
.nav-logo-fallback { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--rose-dark);
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-logo-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 2px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--rose-dark); transform: translateY(-1px); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-dark);
  flex-shrink: 0;
}

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--offwhite);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--rose); }
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--text-muted); line-height: 1;
}

/* ==============================
   HERO
============================== */
.hero { padding-top: 72px; background: var(--offwhite); }

.hero-topbar {
  background: var(--nude);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.hero-topbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.hero-topbar-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rose-light);
  flex-shrink: 0;
}

.hero-body { padding: 88px 0 96px; }
.hero-body .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.1s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  max-width: 760px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.22s forwards;
}
.hero-headline em { font-style: italic; color: var(--rose); }

.hero-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 300;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.85;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.34s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.44s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 22px;
  box-shadow: 0 4px 20px rgba(44,36,34,0.06);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.54s forwards;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.78); }
}
.badge-text { font-size: 14px; font-weight: 400; color: var(--text-mid); line-height: 1.35; }
.badge-text strong { font-weight: 600; color: var(--text-dark); }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ==============================
   SOBRE
============================== */
.authority {
  padding: 112px 0;
  background: var(--offwhite);
  border-top: 1px solid var(--border-soft);
}
.authority-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.authority-text .section-title { margin: 16px 0 0; }
.authority-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: 24px;
}
.authority-body p + p { margin-top: 14px; }
.authority-quote {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 2px solid var(--rose);
  background: var(--cream);
}
.authority-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--rose-dark);
  line-height: 1.6;
}

/* Foto da Dra. — coluna direita */
.authority-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.authority-photo-frame { width: 100%; max-width: 420px; }
.authority-photo-inner {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  background: var(--nude);
  border: 1px solid rgba(158,102,113,0.2);
  position: relative;
}
.authority-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Credenciais abaixo da foto */
.authority-photo-creds {
  display: flex;
  width: 100%;
}
.cred-pill {
  flex: 1;
  background: var(--rose);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 14px 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.cred-pill:last-child { border-right: none; }
.cred-pill strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 1px; }

/* ==============================
   SERVIÇOS
============================== */
.services {
  padding: 112px 0;
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.services-header { margin-bottom: 56px; }
.services-header .section-title { margin-top: 14px; max-width: 480px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
}
.service-panel {
  background: #EDE4E1;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-panel:hover { background: #E5D8D4; }
.service-panel:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--rose-light);
  margin-bottom: 28px;
  display: block;
  text-transform: uppercase;
}
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-list li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: var(--rose-light);
}
.service-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
}
.service-panel:hover .service-cta { gap: 10px; border-color: var(--rose); }

/* ==============================
   PARA QUEM — cards com foto
============================== */
.audiences {
  padding: 112px 0;
  background: var(--offwhite);
}
.audiences-header { margin-bottom: 56px; }
.audiences-header .section-title { margin-top: 14px; }

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.audience-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.audience-card:hover {
  border-color: rgba(158,102,113,0.32);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(158,102,113,0.08);
}

/* Foto no topo do card */
.audience-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--nude);
  position: relative;
}
.audience-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease);
}
.audience-card:hover .audience-card-photo img { transform: scale(1.03); }

/* Conteúdo abaixo da foto */
.audience-card-body { padding: 32px 28px 36px; flex: 1; display: flex; flex-direction: column; }

.audience-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nude);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.audience-icon svg { width: 20px; height: 20px; stroke: var(--rose); fill: none; stroke-width: 1.5; }

.audience-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.audience-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.audience-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 100px;
}

/* ==============================
   DEPOIMENTOS — 3 cards
============================== */
.testimonials {
  padding: 112px 0;
  background: var(--nude);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.testimonials-header { margin-bottom: 56px; }
.testimonials-header .section-title { margin-top: 14px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--offwhite);
  padding: 36px;
  border: 1px solid rgba(158,102,113,0.12);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover { box-shadow: 0 8px 28px rgba(158,102,113,0.1); }

/* Card destaque rosé */
.tc-featured { background: var(--rose); border-color: transparent; }
.tc-featured .testimonial-text { color: rgba(255,255,255,0.9); }
.tc-featured .testimonial-author { border-top-color: rgba(255,255,255,0.2); }
.tc-featured .author-name { color: #fff; }
.tc-featured .author-desc { color: rgba(255,255,255,0.6); }
.tc-featured .author-photo { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.25); }
.tc-featured .author-photo-initials { color: #fff; }

/* Estrelas douradas */
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.star { font-size: 16px; color: #D4A017; }
.tc-featured .star { color: #FFD966; }

/* Texto do depoimento — sans serif */
.testimonial-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--nude);
  border: 2px solid rgba(158,102,113,0.2);
  display: flex; align-items: center; justify-content: center;
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-photo-initials {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--rose);
}
.author-info { flex: 1; }
.author-name-row { display: flex; align-items: center; gap: 5px; }
.author-name { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.2; }

/* Ícone verified: fundo azul + check branco */
.verified-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.verified-icon svg { width: 16px; height: 16px; }

.author-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); margin-top: 2px; }

/* ==============================
   ANTES & DEPOIS
============================== */
.before-after {
  padding: 112px 0;
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.before-after-header { margin-bottom: 16px; }
.before-after-header .section-title { margin-top: 14px; }
.before-after-notice {
  margin-top: 12px;
  margin-bottom: 56px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}
.before-after-notice strong { font-weight: 500; color: var(--text-mid); }

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.ba-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ba-card:hover {
  box-shadow: 0 10px 32px rgba(158,102,113,0.1);
  transform: translateY(-3px);
}
/* Imagem quadrada */
.ba-photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--nude);
  position: relative;
}
.ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease);
}
.ba-card:hover .ba-photo img { transform: scale(1.04); }

.ba-body { padding: 24px 28px; }
.ba-procedure {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.ba-description {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.ba-credit {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--rose-light);
  text-transform: uppercase;
}

/* ==============================
   ONDE ATENDEMOS — com foto
============================== */
.location {
  padding: 112px 0;
  background: var(--offwhite);
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.location-text { display: flex; flex-direction: column; }
.location-text .section-title { margin-top: 14px; margin-bottom: 16px; }
.location-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}

.location-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.location-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.location-contact-item:hover {
  border-color: rgba(158,102,113,0.3);
  background: var(--cream);
}
.lci-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--nude);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lci-icon svg { width: 17px; height: 17px; stroke: var(--rose); fill: none; stroke-width: 1.5; }
.lci-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.lci-value { font-size: 15px; font-weight: 400; color: var(--text-dark); }
.lci-value a { color: var(--rose); transition: color 0.2s; }
.lci-value a:hover { color: var(--rose-dark); }

/* Coluna direita: foto da Dra. */
.location-visual { display: flex; flex-direction: column; }

.location-photo {
  flex: 1;
  overflow: hidden;
  background: var(--nude);
  position: relative;
  min-height: 400px;
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Strip Instagram abaixo da foto */
.location-social {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: none;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.location-social-text { font-size: 14px; font-weight: 300; color: var(--text-muted); }
.location-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rose);
  transition: color 0.2s;
}
.location-social-link:hover { color: var(--rose-dark); }
.location-social-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ==============================
   FAQ
============================== */
.faq {
  padding: 112px 0;
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 88px;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 96px; }
.faq-sidebar .section-title { margin-top: 14px; margin-bottom: 20px; }
.faq-sidebar-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.faq-cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--rose);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.faq-cta-inline:hover { background: var(--rose-dark); transform: translateY(-1px); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--rose); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.3s var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--rose);
  border-color: var(--rose);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-icon svg { width: 13px; height: 13px; stroke: var(--text-muted); fill: none; stroke-width: 1.5; transition: stroke 0.2s; }

.faq-answer {
  display: none;
  padding: 0 0 26px;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 560px;
}
.faq-answer strong { font-weight: 500; color: var(--rose-dark); }
.faq-answer a { color: var(--rose); font-weight: 500; }
.faq-item.open .faq-answer { display: block; }

/* ==============================
   FOOTER
============================== */
footer {
  background: var(--rose-dark);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(158,102,113,0.25);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1;
}
.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-crosp {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.32);
  text-align: right;
  line-height: 1.7;
}
.footer-bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-credit {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}
.footer-credit a { color: rgba(255,255,255,0.5); transition: color 0.2s; font-weight: 400; }
.footer-credit a:hover { color: rgba(255,255,255,0.85); }

/* ==============================
   FLOATING WHATSAPP
============================== */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(37,211,102,0.48); }
.float-wa svg { width: 26px; height: 26px; }
.float-wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--text-dark);
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(5px);
  transition: opacity 0.2s, transform 0.2s;
}
.float-wa:hover .float-wa-tooltip { opacity: 1; transform: translateX(0); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .authority-inner,
  .location-inner { grid-template-columns: 1fr; gap: 52px; }
  .authority-photo-frame { max-width: 360px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .audiences-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .before-after-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-inner { grid-template-columns: 1fr; gap: 44px; }
  .faq-sidebar { position: static; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-crosp { text-align: center; }
  .footer-links { justify-content: center; }
  .location-social { flex-direction: column; text-align: center; gap: 10px; }
  .location-photo { min-height: 320px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-topbar { display: none; }
  .hero-body { padding: 64px 0 72px; }
  .authority, .services, .audiences,
  .testimonials, .before-after,
  .location, .faq { padding: 72px 0; }
  .float-wa { bottom: 20px; right: 18px; }
  .faq-cta-inline { display: none; }
  .before-after-grid { grid-template-columns: 1fr; }
  .audiences-grid { grid-template-columns: 1fr; }
}
