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

:root {
  /* Paleta Premium Renovada — Mais Vibrante e Conversora */
  --primary:        #7C3D8F;  /* Roxo vivo e elegante */
  --primary-light:  #A06BB5;
  --primary-dark:   #5B2A6B;
  --accent:         #E8956D;  /* Coral quente — energético e acolhedor */
  --accent-light:   #F5D5C5;
  --accent-dark:    #C97040;
  --dark:           #1E1B20;  /* Quase preto com tom quente */
  --gray:           #6B6570;
  --light-gray:     #F7F4F8;  /* Lavanda suave */
  --creme:          #FDFAF9;  /* Creme com toque rosado */
  --white:          #FFFFFF;
  --gold:           #C5A059;
  --border:         #E0D6E8;
  --success:        #1AA85C;  /* Verde para WhatsApp */
  
  --shadow-soft:    0 8px 32px rgba(124,61,143,0.06);
  --shadow-hover:   0 20px 60px rgba(124,61,143,0.14);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.06);
  --radius-md:      14px;
  --radius-lg:      28px;

  /* Gradientes */
  --grad-primary:   linear-gradient(135deg, #7C3D8F 0%, #5B2A6B 100%);
  --grad-accent:    linear-gradient(135deg, #E8956D 0%, #C97040 100%);
  --grad-hero:      linear-gradient(160deg, #FDFAF9 0%, #F7F0FF 60%, #EFE0FF 100%);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: var(--dark);
  background: var(--creme);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { 
  font-family: 'Playfair Display', serif; 
  color: var(--dark);
  font-weight: 500;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.bg-light-gray { background-color: var(--light-gray); }
.bg-creme { background-color: var(--creme); }

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  background: var(--grad-primary);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 998;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.urgency-banner.visible {
  transform: translateY(0);
}

.urgency-banner .banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.urgency-banner .banner-badge {
  background: var(--accent);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.urgency-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 150%; }

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,61,143,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(124,61,143,0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(30,27,32,0.2);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #1AA85C 100%);
  color: white;
  padding: 20px 44px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(26,168,92,0.35);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-large::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn-whatsapp-large:hover::after { left: 150%; }

.btn-whatsapp-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(26,168,92,0.45);
}

/* Botão WhatsApp menor (nos cards) */
.btn-whatsapp-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #1AA85C 100%);
  color: white;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(26,168,92,0.3);
  width: 100%;
}

.btn-whatsapp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,168,92,0.4);
}

/* ===== UTILITIES ===== */
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(232,149,109,0.1);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(232,149,109,0.25);
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
}

section { padding: 100px 0; }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,250,249,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,61,143,0.08);
  transition: all 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  font-weight: 700;
}

.nav-logo span {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-primary-small {
  background: var(--grad-primary);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(124,61,143,0.3);
}
.btn-primary-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,61,143,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 26px; height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ===== HERO SPLIT ===== */
#hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

/* Orbs decorativos no fundo do hero */
#hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,61,143,0.07) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,149,109,0.1) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(124,61,143,0.1);
  border: 1px solid rgba(124,61,143,0.1);
}

.hero-urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(232,149,109,0.12), rgba(232,149,109,0.06));
  border: 1px solid rgba(232,149,109,0.3);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 16px;
  animation: pulse-soft 2.5s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,149,109,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(232,149,109,0); }
}

.hero-text-content h1 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-text-content h1 span {
  color: var(--primary);
  font-style: italic;
}

.hero-text-content p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trust indicators abaixo dos botões */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-trust-item strong {
  color: var(--primary);
  font-weight: 700;
}

.hero-trust-item i {
  color: var(--primary);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  height: 600px;
  border-radius: var(--radius-lg);
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-hover);
}

.hero-image-backdrop {
  position: absolute;
  top: 40px;
  right: -30px;
  bottom: -40px;
  left: 30px;
  background: linear-gradient(135deg, var(--accent-light), rgba(124,61,143,0.1));
  border-radius: var(--radius-lg);
  z-index: 1;
}

/* Floating card no hero */
.hero-floating-card {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.hero-floating-card .hfc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #25D366, #1AA85C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-floating-card .hfc-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.hero-floating-card .hfc-text span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ===== SOLUÇÕES / SERVIÇOS ===== */
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.solucao-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.solucao-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(124,61,143,0.12);
}

.solucao-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.solucao-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(124,61,143,0.12) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.solucao-card:hover .solucao-img::after { opacity: 1; }

.solucao-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.solucao-card:hover .solucao-img img {
  transform: scale(1.06);
}

.solucao-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solucao-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.solucao-body p {
  color: var(--gray);
  margin-bottom: 24px;
  flex-grow: 1;
}

.solucao-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.solucao-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ===== DEPOIMENTOS CARROSSEL ===== */
#depoimento {
  background: linear-gradient(135deg, #F7F0FF 0%, #FDFAF9 50%, #FFF5EE 100%);
}

#depoimento .section-header {
  margin-bottom: 40px;
}

.depoimento-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 340px;
}

.depoimento-slide {
  text-align: center;
  display: none !important;
  animation: fadeSlide 0.5s ease;
}

.depoimento-slide.ativo {
  display: block !important;
}

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

.depoimento-slide .quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 24px;
}

.depoimento-slide blockquote {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.5;
  margin-bottom: 36px;
  color: var(--dark);
  font-style: italic;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
}

.autor-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.autor-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(124,61,143,0.15);
  object-fit: cover;
}

.autor-texto { text-align: left; }

.autor-texto strong {
  display: block;
  font-size: 1.1rem;
}

.autor-texto span {
  font-size: 0.85rem;
  color: var(--gray);
}

.depoimento-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.depoimento-stars i { color: var(--gold); font-size: 1.3rem; }

/* Navegação */
.depoimento-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.depoimento-arrow {
  background: var(--white);
  border: 2px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  font-size: 1rem;
  transition: all 0.3s;
}

.depoimento-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.depoimento-dots {
  display: flex;
  gap: 10px;
}

.depoimento-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.depoimento-dot.ativo {
  background: var(--primary);
  width: 32px;
  border-radius: 6px;
}

.depoimento-dot:hover {
  background: var(--primary-light);
}

/* ===== ESTATÍSTICAS ===== */
#stats {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 400;
}

/* ===== A CLÍNICA / DIFERENCIAIS ===== */
.clinica-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.clinica-texto h2 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}

.clinica-texto p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.clinica-features { list-style: none; }

.clinica-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.clinica-features i {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(124,61,143,0.08), rgba(124,61,143,0.04));
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(124,61,143,0.12);
  flex-shrink: 0;
}

.clinica-galeria {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.img-large { flex: 1.5; }

.img-large img {
  height: 500px;
  border-radius: var(--radius-md);
}

.img-small-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-small-group img {
  height: 300px;
  border-radius: var(--radius-md);
}

.google-badge-clean {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(124,61,143,0.08);
}

.google-badge-clean .nota {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.google-badge-clean .stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.google-badge-clean .texto {
  font-size: 0.82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== EQUIPE ===== */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.equipe-membro {
  text-align: center;
}

.equipe-img-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(124,61,143,0.15);
  border: 4px solid var(--white);
  outline: 2px solid rgba(124,61,143,0.15);
}

.equipe-membro h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.equipe-membro .cargo {
  display: block;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.equipe-membro p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== CONTATO ===== */
#contato {
  padding: 80px 0 60px;
}

.contato-box-premium {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border: 1px solid rgba(124,61,143,0.06);
}

.contato-info h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.contato-info > p {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.infos-lista {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-item .info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(232,149,109,0.12), rgba(232,149,109,0.06));
  border: 1px solid rgba(232,149,109,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-top: 4px;
}

.info-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-item span {
  color: var(--gray);
  font-size: 0.95rem;
}

.contato-acao {
  background: linear-gradient(135deg, #F7F0FF 0%, #EFE0FF 100%);
  padding: 50px 40px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(124,61,143,0.1);
}

.contato-acao h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.contato-acao p {
  color: var(--gray);
  margin-bottom: 8px;
}

/* Badge de resposta rápida */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,168,92,0.1);
  border: 1px solid rgba(26,168,92,0.25);
  color: #1AA85C;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.response-badge .dot {
  width: 7px; height: 7px;
  background: #1AA85C;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.numero-suporte {
  display: block;
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--gray);
}

/* ===== SEÇÃO MAPA / LOCALIZAÇÃO ===== */
#localizacao {
  padding: 80px 0;
  background: var(--light-gray);
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: stretch;
}

.localizacao-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.localizacao-info h2 {
  font-size: 2.2rem;
  line-height: 1.25;
}

.localizacao-info h2 span {
  color: var(--primary);
  font-style: italic;
}

.localizacao-info p {
  color: var(--gray);
  font-size: 1.05rem;
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.loc-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-detail-item .loc-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
  border: 1px solid rgba(124,61,143,0.1);
}

.loc-detail-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.loc-detail-item span {
  color: var(--gray);
  font-size: 0.88rem;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(124,61,143,0.3);
  width: fit-content;
}

.btn-directions:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(124,61,143,0.4);
}

.mapa-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.12);
  height: 420px;
  border: 4px solid var(--white);
}

.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo { 
  color: var(--white); 
  font-size: 2rem;
  margin-bottom: 16px;
}

.footer-brand .nav-logo span { color: var(--accent); }

.footer-brand p {
  font-size: 1.05rem;
  max-width: 400px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== BARRA FIXA MOBILE ===== */
.mobile-fixed-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 12px 16px;
}

.mobile-fixed-bar .bar-btn {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--dark);
}

.mobile-fixed-bar .bar-whatsapp {
  background: linear-gradient(135deg, #25D366, #1AA85C);
  color: white;
  border: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===== WHATSAPP FLOAT DESKTOP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: linear-gradient(135deg, #25D366, #1AA85C);
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

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

/* Tooltip do WhatsApp float */
.whatsapp-float::before {
  content: 'Fale com a gente!';
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  right: 66px;
  border: 6px solid transparent;
  border-left-color: var(--dark);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ===== ANIMAÇÃO DE ENTRADA ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text-content { order: 2; }
  .hero-visual {
    order: 1;
    height: 400px;
  }
  .hero-image-backdrop { display: none; }
  .hero-floating-card { display: none; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .clinica-grid, .contato-box-premium {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contato-box-premium { padding: 40px 32px; }
  .clinica-galeria { flex-direction: column; }
  .img-large img { height: 350px; }
  .localizacao-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mapa-wrapper { height: 340px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.mobile-open { 
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .hamburger { display: flex; }
  section { padding: 60px 16px; }
  #localizacao { padding: 50px 16px; }
  .container { padding: 0 16px; }
  
  /* Hero */
  .hero-visual { height: 280px; }
  .hero-text-content h1 { font-size: 2rem; }
  .hero-text-content p { font-size: 1rem; }
  .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
  .hero-buttons .btn { width: 100%; padding: 14px 20px; font-size: 0.95rem; }
  .hero-trust { gap: 12px; font-size: 0.8rem; }
  .hero-floating-card { display: none; }
  
  /* Serviços */
  .solucoes-grid { gap: 24px; grid-template-columns: 1fr; }
  .solucao-img { height: 200px; }
  .solucao-body { padding: 24px; }
  .solucao-body h3 { font-size: 1.2rem; }
  
  /* Depoimentos */
  .depoimento-slide blockquote { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
  .depoimento-slide .quote-icon { font-size: 1.8rem; margin-bottom: 16px; }
  .autor-avatar img { width: 48px; height: 48px; }
  .autor-texto strong { font-size: 0.95rem; }
  .autor-texto span { font-size: 0.78rem; }
  .depoimento-nav { gap: 12px; margin-top: 24px; }
  .depoimento-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
  
  /* Clínica */
  .clinica-grid { gap: 24px; }
  .clinica-texto h2 { font-size: 1.8rem; }
  .clinica-texto p { font-size: 1rem; }
  .clinica-features li { font-size: 0.95rem; }
  .clinica-features i { width: 44px; height: 44px; font-size: 1rem; }
  .img-large img { height: 250px; }
  .img-small-group img { height: 180px; }
  .google-badge-clean { height: 140px; padding: 16px; }
  .google-badge-clean .nota { font-size: 2rem; }
  
  /* Equipe */
  .equipe-grid { gap: 32px; }
  .equipe-img-wrapper { width: 160px; height: 160px; }
  .equipe-membro h3 { font-size: 1.3rem; }
  
  /* Contato */
  .contato-box-premium { padding: 24px 20px; gap: 32px; }
  .contato-info h2 { font-size: 1.6rem; }
  .contato-info > p { font-size: 1rem; }
  .contato-acao { padding: 32px 20px; }
  .contato-acao h3 { font-size: 1.3rem; }
  .btn-whatsapp-large { padding: 16px 24px; font-size: 1rem; }
  
  /* Localização */
  .localizacao-info h2 { font-size: 1.6rem; }
  .mapa-wrapper { height: 280px; }
  .btn-directions { width: 100%; justify-content: center; }
  
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  footer { padding: 60px 0 100px; }
  
  /* Geral */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 1rem; }
  section { padding: 60px 0; }
  .whatsapp-float { bottom: 80px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
  .whatsapp-float::before { display: none; }
  #stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.82rem; }
  .urgency-banner { font-size: 0.78rem; top: 70px; padding: 8px 12px; }
  .urgency-banner a { font-size: 0.78rem; }
  
  /* Habilitar Mobile Bar */
  .mobile-fixed-bar { display: flex; gap: 10px; padding: 10px 12px; }
  .mobile-fixed-bar .bar-btn { padding: 12px 0; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .hero-visual { height: 220px; }
  .hero-text-content h1 { font-size: 1.6rem; }
  .hero-urgency-tag { font-size: 0.72rem; padding: 5px 12px; }
  .hero-text-content p { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-badge { font-size: 0.72rem; margin-bottom: 20px; }
  .hero-buttons .btn { font-size: 0.88rem; padding: 12px 16px; }
  .hero-trust-item { font-size: 0.75rem; }
  section { padding: 40px 0; }
  .depoimento-slide blockquote { font-size: 1rem; }
  .depoimento-nav { gap: 8px; }
  .depoimento-arrow { width: 32px; height: 32px; font-size: 0.75rem; }
  .depoimento-dot { width: 10px; height: 10px; }
  .depoimento-dot.ativo { width: 24px; }
  .solucao-img { height: 180px; }
  .img-large img { height: 200px; }
  .img-small-group img { height: 150px; }
  .mapa-wrapper { height: 240px; }
  .contato-box-premium { padding: 16px; }
  .mobile-fixed-bar .bar-btn { font-size: 0.8rem; padding: 10px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.75rem; }
}
