/* =============================================
   CLÍNICA DE PSICOLOGIA — STYLE.CSS
   Paleta: Proativa — Azul & Roxo
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --verde-escuro:   #1A4FA0;
  --verde-medio:    #2E6CC4;
  --verde-claro:    #72B8E8;
  --verde-palido:   #E8F2FC;
  --dourado:        #7B3FB8;
  --dourado-claro:  #B07FDA;
  --offwhite:       #F5F7FC;
  --branco:         #FFFFFF;
  --cinza-texto:    #3A3A4A;
  --cinza-leve:     #DDE4F0;
  --sombra:         rgba(26, 79, 160, 0.15);
  --fonte-titulo:   'Cormorant Garamond', 'Georgia', serif;
  --fonte-corpo:    'Raleway', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte-corpo);
  background-color: var(--offwhite);
  color: var(--cinza-texto);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(245, 247, 252, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--verde-claro);
  box-shadow: 0 2px 20px var(--sombra);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.6rem 5%;
  box-shadow: 0 4px 30px var(--sombra);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .nome {
  font-family: var(--fonte-titulo);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--verde-escuro);
  letter-spacing: 0.03em;
}

.nav-logo-text .slogan {
  font-size: 0.65rem;
  color: var(--dourado);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--verde-escuro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--dourado);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--dourado); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--verde-escuro);
  color: var(--branco) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--dourado) !important;
  color: var(--branco) !important;
  transform: translateY(-2px);
}

/* Hamburguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--verde-escuro);
  border-radius: 2px;
  transition: all 0.35s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(245, 247, 252, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  font-weight: 600;
  color: var(--verde-escuro);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--dourado); }

.mobile-menu .mob-cta {
  background: var(--verde-escuro);
  color: var(--branco) !important;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/8560205/pexels-photo-8560205.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=900&w=1600');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 79, 160, 0.85) 0%,
    rgba(46, 108, 196, 0.6) 50%,
    rgba(123, 63, 184, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-text { animation: fadeInLeft 1s ease both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(123, 63, 184, 0.2);
  border: 1px solid var(--dourado);
  color: var(--dourado-claro);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero-titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-titulo strong {
  font-weight: 700;
  color: var(--dourado-claro);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primario {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dourado);
  color: var(--branco);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(123, 63, 184, 0.4);
}

.btn-primario:hover {
  background: var(--dourado-claro);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(123, 63, 184, 0.5);
}

.btn-secundario {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--branco);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.btn-secundario:hover {
  border-color: var(--branco);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.hero-card {
  animation: fadeInRight 1s 0.3s ease both;
}

.hero-stats-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s;
}

.stat-item:hover { transform: translateY(-4px); }

.stat-num {
  font-family: var(--fonte-titulo);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dourado-claro);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* =============================================
   SEÇÕES GERAIS
   ============================================= */
section { padding: 6rem 5%; }

.section-tag {
  display: inline-block;
  color: var(--dourado);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1.3rem; height: 2px;
  background: var(--dourado);
  border-radius: 2px;
}

.section-titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--verde-escuro);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-titulo span { color: var(--dourado); }

.section-desc {
  font-size: 1rem;
  color: var(--cinza-texto);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 400;
}

.divisor {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--verde-medio), var(--dourado));
  border-radius: 3px;
  margin: 1.2rem 0 2rem;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  background: var(--branco);
  max-width: 100%;
}

.sobre-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-imagem {
  position: relative;
}

.sobre-img-principal {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px var(--sombra);
}

.sobre-badge-flutuante {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--dourado);
  color: var(--branco);
  padding: 1.2rem 1.8rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(123, 63, 184, 0.4);
}

.sobre-badge-flutuante .num {
  font-family: var(--fonte-titulo);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.sobre-badge-flutuante .txt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.sobre-lista {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.sobre-lista li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--cinza-texto);
}

.sobre-lista li .icone {
  min-width: 22px; height: 22px;
  background: var(--verde-palido);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sobre-lista li .icone svg {
  width: 12px; height: 12px;
  color: var(--verde-escuro);
}

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos {
  background: var(--verde-palido);
}

.servicos-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.servicos-header {
  text-align: center;
  margin-bottom: 4rem;
}

.servicos-header .section-tag,
.servicos-header .divisor {
  margin-left: auto;
  margin-right: auto;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.servico-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 2.2rem;
  border: 1px solid rgba(114, 184, 232, 0.3);
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--verde-medio), var(--dourado));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--sombra);
}

.servico-card:hover::before { transform: scaleX(1); }

.servico-icone {
  width: 60px; height: 60px;
  background: var(--verde-palido);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.7rem;
  transition: background 0.3s;
}

.servico-card:hover .servico-icone {
  background: var(--dourado);
}

.servico-card h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--verde-escuro);
  margin-bottom: 0.7rem;
}

.servico-card p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.7;
}

/* =============================================
   DIFERENCIAIS
   ============================================= */
.diferenciais {
  background: var(--branco);
}

.diferenciais-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dif-lista {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.dif-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--cinza-leve);
  transition: all 0.3s ease;
}

.dif-item:hover {
  background: var(--verde-palido);
  border-color: var(--verde-claro);
  transform: translateX(6px);
}

.dif-num {
  min-width: 48px; height: 48px;
  background: var(--verde-escuro);
  color: var(--branco);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-titulo);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dif-item h4 {
  font-family: var(--fonte-titulo);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--verde-escuro);
  margin-bottom: 0.3rem;
}

.dif-item p {
  font-size: 0.88rem;
  color: var(--cinza-texto);
  line-height: 1.65;
}

.dif-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px var(--sombra);
}

/* =============================================
   DEPOIMENTOS
   ============================================= */
.depoimentos {
  background: linear-gradient(135deg, #0D2B6E 0%, var(--verde-escuro) 50%, var(--verde-medio) 100%);
  position: relative;
  overflow: hidden;
}

.depoimentos::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: 5%;
  font-family: var(--fonte-titulo);
  font-size: 30rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.depoimentos-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 4rem;
}

.depoimentos-header .section-titulo { color: var(--branco); }
.depoimentos-header .section-tag { color: var(--dourado-claro); }
.depoimentos-header .section-tag::before { background: var(--dourado-claro); }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.dep-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.dep-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-6px);
}

.dep-estrelas {
  color: var(--dourado-claro);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.dep-texto {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.dep-autor {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dep-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dourado), var(--verde-claro));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--branco);
  font-size: 1rem;
  flex-shrink: 0;
}

.dep-nome {
  font-weight: 600;
  color: var(--branco);
  font-size: 0.9rem;
}

.dep-tipo {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

/* =============================================
   AGENDAMENTO / CTA
   ============================================= */
.agendar {
  background: var(--offwhite);
}

.agendar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.agendar-form-wrap {
  background: var(--branco);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px var(--sombra);
  border: 1px solid var(--cinza-leve);
}

.agendar-form-wrap h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--verde-escuro);
  margin-bottom: 0.5rem;
}

.agendar-form-wrap p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  margin-bottom: 1.8rem;
}

.form-grupo {
  margin-bottom: 1.2rem;
}

.form-grupo label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--verde-escuro);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.form-grupo input,
.form-grupo select,
.form-grupo textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--cinza-leve);
  border-radius: 12px;
  font-family: var(--fonte-corpo);
  font-size: 0.92rem;
  color: var(--cinza-texto);
  background: var(--offwhite);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}

.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus {
  border-color: var(--verde-medio);
  box-shadow: 0 0 0 3px rgba(46, 108, 196, 0.15);
  background: var(--branco);
}

.form-grupo textarea { resize: vertical; min-height: 100px; }

.btn-form {
  width: 100%;
  padding: 1rem;
  background: var(--verde-escuro);
  color: var(--branco);
  border: none;
  border-radius: 12px;
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-form:hover {
  background: var(--dourado);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(123, 63, 184, 0.35);
}

.agendar-info { display: flex; flex-direction: column; gap: 2rem; }

.info-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--branco);
  border-radius: 16px;
  border: 1px solid var(--cinza-leve);
  transition: all 0.3s;
}

.info-card:hover {
  border-color: var(--verde-claro);
  transform: translateX(4px);
}

.info-icone {
  width: 50px; height: 50px;
  background: var(--verde-palido);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-family: var(--fonte-titulo);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--verde-escuro);
  margin-bottom: 0.3rem;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--cinza-texto);
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #0D1B3E;
  color: rgba(255,255,255,0.75);
  padding: 4rem 5% 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-logo { margin-bottom: 1rem; }

.footer-logo-nome {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--branco);
}

.footer-logo-sub {
  font-size: 0.7rem;
  color: var(--dourado-claro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.6);
}

.footer-redes {
  display: flex;
  gap: 0.8rem;
}

.rede-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  color: rgba(255,255,255,0.7);
}

.rede-btn:hover {
  background: var(--dourado);
  color: var(--branco);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--fonte-titulo);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--dourado);
  border-radius: 2px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a:hover { color: var(--dourado-claro); }

.footer-col ul li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

.crp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.whatsapp-bubble {
  background: var(--branco);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  max-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  font-size: 0.82rem;
  color: var(--cinza-texto);
  line-height: 1.5;
  border: 1px solid var(--cinza-leve);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.35s ease;
  pointer-events: none;
}

.whatsapp-bubble strong {
  display: block;
  color: var(--verde-escuro);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.whatsapp-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 22px;
  border: 8px solid transparent;
  border-top-color: var(--branco);
  border-bottom: none;
}

.whatsapp-float:hover .whatsapp-bubble,
.whatsapp-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-btn {
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
  animation: pulse-green 2.5s infinite;
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}

.whatsapp-btn svg {
  width: 32px; height: 32px;
  fill: var(--branco);
}

.whatsapp-notify {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--dourado);
  border-radius: 50%;
  border: 2px solid var(--branco);
  animation: bounce-dot 1.5s infinite;
}

/* =============================================
   ANIMAÇÕES
   ============================================= */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
}

@keyframes bounce-dot {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.3); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVIDADE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-card { max-width: 480px; margin: 0 auto; }
  .hero-stats-card { grid-template-columns: repeat(4, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-imagem { order: -1; }
  .sobre-img-principal { height: 380px; }
  .diferenciais-inner { grid-template-columns: 1fr; }
  .dif-img { height: 350px; }
  .agendar-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* =============================================
   RESPONSIVIDADE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  section { padding: 4rem 5%; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero-content { padding-top: 2rem; }
  .hero-stats-card { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2rem; }

  .sobre-badge-flutuante {
    right: 0;
    bottom: -1rem;
  }

  .servicos-grid { grid-template-columns: 1fr; }

  .dep-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 1.4rem; right: 1.4rem; }
  .whatsapp-btn { width: 56px; height: 56px; }
  .whatsapp-btn svg { width: 28px; height: 28px; }

  .agendar-form-wrap { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-titulo { font-size: 2.4rem; }
  .hero-stats-card { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primario, .btn-secundario { justify-content: center; }
  .sobre-badge-flutuante { display: none; }
}