/* ═══════════════════════════════════════
   DRA. HELENA ZORZATO — LANDING PAGE CSS
   ═══════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --greige:     #C2B0A6;
  --bege-rose:  #D8CBC3;
  --taupe:      #A89189;
  --off-white:  #F5F0EC;
  --nude-ouro:  #E8C8AD;

  --text-dark:  #3D2F2A;
  --text-mid:   #6B5248;
  --text-light: #A89189;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-soft: 0 4px 30px rgba(168,145,137,0.12);
  --shadow-card: 0 8px 40px rgba(168,145,137,0.18);
  --shadow-float: 0 20px 60px rgba(168,145,137,0.25);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --section-pad: clamp(4rem, 8vw, 7rem);
  --container: 1240px;
}

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', 'Lato', sans-serif;
  background-color: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TIPOGRAFIA ─────────────────────────────────────────────────── */
h1, h2, h3, .logo-name, .hero-headline, .section-title, .cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

em { font-style: italic; color: var(--nude-ouro); }

/* ─── UTILITÁRIOS ─────────────────────────────────────────────────── */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  background: rgba(168,145,137,0.12);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── BOTÕES ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--nude-ouro);
  color: var(--taupe);
  box-shadow: 0 4px 20px rgba(232,200,173,0.4);
}
.btn-primary:hover {
  background: #ddb89a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,200,173,0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid rgba(168,145,137,0.4);
}
.btn-secondary:hover {
  background: rgba(168,145,137,0.08);
  border-color: var(--taupe);
  transform: translateY(-2px);
}

.btn-instagram {
  background: var(--text-dark);
  color: var(--off-white);
  padding: 1rem 2.2rem;
}
.btn-instagram:hover {
  background: #5a3e37;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61,47,42,0.25);
}

.btn-cta-final {
  background: white;
  color: var(--text-dark);
  font-size: 1.05rem;
  padding: 1.1rem 2.6rem;
  box-shadow: 0 8px 40px rgba(255,255,255,0.25);
}
.btn-cta-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(245,240,236,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(168,145,137,0.15);
  padding: 0.7rem 0;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.logo-crm {
  font-size: 0.68rem;
  color: var(--taupe);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links li a {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links li a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--nude-ouro);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-fast);
}

.nav-links li a:not(.nav-cta):hover {
  color: var(--text-dark);
}

.nav-links li a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--nude-ouro);
  color: var(--taupe) !important;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: #ddb89a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,200,173,0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: calc(5rem + 80px) 0 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(216,203,195,0.5) 0%, transparent 70%);
  animation: float-orb 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -50px;
  background: radial-gradient(circle, rgba(232,200,173,0.3) 0%, transparent 70%);
  animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  position: relative;
  z-index: 1;
}

.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  border: 1px solid rgba(168,145,137,0.2);
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  width: fit-content;
  box-shadow: var(--shadow-soft);
}

.badge-dot {
  width: 8px; height: 8px;
  background: #6BCB77;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,203,119,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(107,203,119,0); }
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(168,145,137,0.2);
}

.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.stat-label { font-size: 0.78rem; color: var(--text-light); }
.stat-divider { width: 1px; height: 36px; background: rgba(168,145,137,0.25); }

/* Hero image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 90%;
  max-width: 480px;
}

.hero-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
}

.hero-image-accent {
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(232,200,173,0.4);
  border-radius: calc(var(--radius-lg) + 10px);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-credibility {
  bottom: 40px;
  left: -30px;
  animation-delay: -2s;
}

.card-credibility .fc-icon {
  font-size: 1.4rem;
  color: var(--nude-ouro);
}

.card-credibility strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.card-credibility span {
  font-size: 0.72rem;
  color: var(--text-light);
}

.card-rating {
  top: 40px;
  right: -20px;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem;
}

.card-rating .stars { font-size: 0.9rem; color: #F5A623; }
.card-rating span { font-size: 0.75rem; color: var(--text-mid); font-weight: 500; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-bounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--taupe), transparent);
}

@keyframes fade-bounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════
   SOBRE
   ═══════════════════════════════════════ */
.sobre {
  padding: var(--section-pad) 0;
  background: var(--greige);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.sobre-image-wrapper { position: relative; }

.sobre-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
}

.sobre-image-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(232,200,173,0.5);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -1;
}

.sobre-badge-card {
  position: absolute;
  top: 30px;
  right: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sobre-badge-card strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
.sobre-badge-card span { font-size: 0.72rem; color: var(--text-light); }

.sobre-content { display: flex; flex-direction: column; gap: 1.25rem; }

.sobre-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.sobre-destaque {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  margin: 0.5rem 0;
}

.destaque-line {
  width: 3px;
  min-height: 100%;
  background: var(--nude-ouro);
  border-radius: 3px;
  flex-shrink: 0;
}

.sobre-destaque p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
}

.sobre-pilares { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }

.pilar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.pilar:hover { background: rgba(255,255,255,0.8); transform: translateX(4px); }

.pilar-icon {
  width: 44px; height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.pilar strong { display: block; font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }
.pilar span { font-size: 0.8rem; color: var(--text-mid); }

/* ═══════════════════════════════════════
   CONDIÇÕES
   ═══════════════════════════════════════ */
.condicoes {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.condicoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.cond-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(168,145,137,0.15);
  transition: var(--transition);
  cursor: default;
}

.cond-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(232,200,173,0.5);
}

.cond-icon {
  width: 52px; height: 52px;
  background: rgba(232,200,173,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  margin-bottom: 1.1rem;
  transition: var(--transition);
}

.cond-card:hover .cond-icon {
  background: var(--nude-ouro);
  color: white;
}

.cond-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.cond-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   COMO FUNCIONA
   ═══════════════════════════════════════ */
.como-funciona {
  padding: var(--section-pad) 0;
  background: var(--bege-rose);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(168,145,137,0.25);
  z-index: 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  animation: fade-up 0.6s ease both;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.step-icon {
  width: 72px; height: 72px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  box-shadow: var(--shadow-card);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
  border: 2px solid rgba(232,200,173,0.3);
}

.timeline-step:hover .step-icon {
  background: var(--nude-ouro);
  color: white;
  transform: scale(1.1);
}

.step-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.timeline-cta { text-align: center; }

/* ═══════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════ */
.depoimentos {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  border: 1px solid rgba(168,145,137,0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-mid);
  box-shadow: var(--shadow-soft);
  margin-top: 1rem;
}

.google-badge .stars-text { color: #F5A623; font-size: 0.9rem; }
.google-badge strong { color: var(--text-dark); }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depo-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(168,145,137,0.12);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.depo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.depo-stars { color: #F5A623; font-size: 1rem; letter-spacing: 0.05em; }

.depo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.depo-author { display: flex; align-items: center; gap: 1rem; }

.depo-avatar {
  width: 40px; height: 40px;
  background: var(--greige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.depo-author strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.depo-author span { font-size: 0.75rem; color: var(--text-light); }

/* ═══════════════════════════════════════
   INSTAGRAM
   ═══════════════════════════════════════ */
.instagram {
  padding: var(--section-pad) 0;
  background: var(--greige);
}

.instagram .section-tag {
  color: var(--off-white);
  background: rgba(245,240,236,0.18);
  border: 1px solid rgba(245,240,236,0.3);
}

.instagram .section-title em {
  color: var(--off-white);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.ig-post {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bege-rose);
}

.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.ig-post:hover img { transform: scale(1.03); }

/* Label permanente no rodapé do post */
.ig-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(61,47,42,0.82) 0%, transparent 100%);
  padding: 1.4rem 0.9rem 0.7rem;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

/* Overlay só aparece no hover — mostra ícone IG */
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,47,42,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.ig-post:hover .ig-overlay { opacity: 1; }
.ig-post:hover .ig-label { padding-bottom: 0.9rem; }

.ig-cta-wrapper { text-align: center; }

/* ═══════════════════════════════════════
   CONTATO
   ═══════════════════════════════════════ */
.contato {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contato-info { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(168,145,137,0.12);
  transition: var(--transition);
}

.info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }

.info-icon {
  width: 44px; height: 44px;
  background: rgba(232,200,173,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  flex-shrink: 0;
}

.info-card > div { display: flex; flex-direction: column; gap: 0.2rem; }
.info-card strong { font-size: 0.88rem; color: var(--text-dark); font-weight: 600; }
.info-card span, .info-card a { font-size: 0.82rem; color: var(--text-mid); }
.info-card a:hover { color: var(--taupe); text-decoration: underline; }

.mapa-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.mapa-wrapper iframe { display: block; }

.mapa-label {
  background: white;
  padding: 0.8rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bege-rose);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(168,145,137,0.15);
  transition: var(--transition);
}

.faq-item.open { box-shadow: var(--shadow-card); }

.faq-question {
  width: 100%;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.faq-question:hover { color: var(--taupe); }

.faq-icon {
  flex-shrink: 0;
  color: var(--taupe);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 1.5rem 1.35rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-answer a { color: var(--taupe); text-decoration: underline; }

/* ═══════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════ */
.cta-final {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #5a3e37 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,200,173,0.15) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-final-content { position: relative; z-index: 1; }

.cta-deco-line {
  width: 60px;
  height: 2px;
  background: var(--nude-ouro);
  margin: 0 auto 2rem;
}

.cta-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: white;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.cta-headline em { color: var(--nude-ouro); }

.cta-subtext {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.cta-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-crm {
  font-size: 0.72rem;
  color: var(--nude-ouro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social { display: flex; gap: 0.75rem; }

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--nude-ouro);
  color: var(--text-dark);
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--nude-ouro);
  margin-bottom: 1.25rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
}
.footer-links li a:hover { color: white; }

.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition-fast); }
.footer-contact a:hover { color: var(--nude-ouro); }

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════
   WHATSAPP FLUTUANTE
   ═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wf-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes wf-pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 50px rgba(37,211,102,0.65), 0 0 0 12px rgba(37,211,102,0.08); }
}

.wf-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.wf-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text-dark);
}

.whatsapp-float:hover .wf-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-image-wrapper { order: -1; justify-content: center; }
  .hero-photo { height: 420px; }
  .hero-content { align-items: center; text-align: center; }
  .hero-subtext { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-image-wrapper { max-width: 480px; margin: 0 auto; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .timeline::before { display: none; }
  .depoimentos-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(245,240,236,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 998;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.3rem !important; }
  .nav-toggle { display: flex; z-index: 999; }

  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .condicoes-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .hero-photo { height: 340px; }
  .card-credibility { left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .condicoes-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
}
