/* =============================================
   DEBORAH MOTA CARDOSO - PSICÓLOGA
   Paleta inspirada em Neurova: tons profundos
   azul-esverdeado + off-white + detalhes dourados
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --deep: #0d2b35;
  --teal: #1a4a5a;
  --teal-mid: #2a6478;
  --accent: #c9a96e;
  --accent-light: #e8d5b0;
  --off-white: #f5f0e8;
  --white: #ffffff;
  --text-dark: #1a2a30;
  --text-muted: #5a7a85;
  --light-bg: #eef5f7;
  --border: rgba(26, 74, 90, 0.15);
  --shadow: 0 8px 40px rgba(13,43,53,0.12);
  --shadow-hover: 0 16px 60px rgba(13,43,53,0.2);
  --radius: 12px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

/* ---- NAVBAR ---- */
.navbar {
  background: transparent;
  padding: 20px 0;
  transition: all 0.4s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar.scrolled {
  background: var(--deep);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white) !important;
  letter-spacing: 0.5px;
}
.navbar-brand span { color: var(--accent); }
.navbar-brand small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--accent-light);
  margin-top: -4px;
}
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  transition: color 0.3s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover::after { transform: scaleX(1); }
.navbar-toggler { border: 1px solid rgba(255,255,255,0.3); }
.navbar-toggler-icon { filter: invert(1); }
.dropdown-menu {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 280px;
  padding: 8px 0;
}
.dropdown-item {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.85rem;
  padding: 8px 20px;
  transition: all 0.2s;
}
.dropdown-item:hover {
  background: rgba(201,169,110,0.15);
  color: var(--accent) !important;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(42,100,120,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,169,110,0.1) 0%, transparent 60%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.hero-img-wrap {
  position: relative;
  z-index: 2;
  text-align: right;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  max-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}
.hero-img-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  min-width: 200px;
}
.hero-img-card .card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.hero-img-card .card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--teal);
  font-weight: 600;
}
.hero-img-dots {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.4;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: var(--accent);
  color: var(--deep);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-primary-custom:hover {
  background: var(--deep);
  color: var(--accent);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
  transform: translateY(-2px);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-teal:hover {
  background: var(--deep);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--deep);
  margin-bottom: 16px;
  font-weight: 400;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-title-white { color: var(--white); }
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 540px;
}

/* ---- ABOUT SECTION ---- */
.about-section { padding: 100px 0; background: var(--white); }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 560px;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--deep);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge .label { font-size: 0.75rem; font-weight: 500; }
.about-credentials { margin-top: 32px; }
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.credential-icon {
  width: 36px;
  height: 36px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 0.875rem;
}
.credential-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep);
}
.credential-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- ESPECIALIDADES SECTION ---- */
.especialidades-section {
  padding: 100px 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.especialidades-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.spec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.spec-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.spec-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.spec-card:hover::before { transform: scaleX(1); }
.spec-icon {
  width: 56px; height: 56px;
  background: rgba(201,169,110,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.spec-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.spec-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}
.spec-tag {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--accent);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin: 4px 3px 0;
}

/* ---- TRATAMENTOS / SERVIÇOS ---- */
.servicos-section { padding: 100px 0; background: var(--light-bg); }
.servico-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.servico-card-header {
  padding: 32px;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.servico-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.servico-card-header .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.servico-card-header h4 {
  color: var(--white);
  font-size: 1.2rem;
}
.servico-card-body {
  padding: 24px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.servico-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}
.servico-link {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  transition: gap 0.2s;
}
.servico-link:hover { gap: 10px; color: var(--accent); }

/* ---- PAGE HERO (páginas internas) ---- */
.page-hero {
  background: var(--deep);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(42,100,120,0.4) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 560px;
}
.breadcrumb-custom {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
.breadcrumb-custom a { color: var(--accent); text-decoration: none; font-size: 0.8rem; }
.breadcrumb-custom span { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.breadcrumb-custom .current { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ---- TRATAMENTO DETAIL PAGE ---- */
.tratamento-content { padding: 80px 0; }
.info-box {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 24px 0;
}
.info-box h5 {
  color: var(--deep);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.info-box p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.symptom-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.symptom-item::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.method-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.method-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.method-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.method-card h5 {
  color: var(--deep);
  font-size: 1rem;
  margin-bottom: 8px;
}
.method-card p { color: var(--text-muted); font-size: 0.83rem; }
.cta-box {
  background: var(--deep);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
}
.cta-box h3 { color: var(--white); margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.infographic {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}
.infographic h5 {
  color: var(--deep);
  margin-bottom: 20px;
  font-size: 1.15rem;
  text-align: center;
}
.infographic-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.infographic-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.infographic-step:not(:last-child) .step-num::after {
  content: '';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border);
  z-index: 0;
}
.step-content strong { display: block; font-size: 0.9rem; color: var(--deep); }
.step-content p { font-size: 0.85rem; color: var(--text-muted); margin: 4px 0 0; }
.stats-row {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 32px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 6px; }

/* ---- CONTATO ---- */
.contato-section { padding: 100px 0; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
  height: 100%;
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.contact-icon {
  width: 56px; height: 56px;
  background: var(--light-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-card h5 { color: var(--deep); margin-bottom: 4px; font-size: 1rem; }
.contact-card p, .contact-card a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--teal); }
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-wrapper h3 { color: var(--deep); margin-bottom: 8px; }
.form-wrapper > p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.9rem; }
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.3s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,74,90,0.1);
  background: var(--white);
}
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--deep); margin-bottom: 6px; letter-spacing: 0.5px; }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrapper iframe { display: block; }

/* ---- SOBRE PAGE ---- */
.sobre-section { padding: 80px 0; }
.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 0 0 28px 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -19px; top: 6px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.timeline-title { font-size: 0.95rem; color: var(--deep); font-weight: 600; margin-bottom: 4px; }
.timeline-desc { font-size: 0.85rem; color: var(--text-muted); }
.value-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover {
  background: var(--teal);
}
.value-card:hover h5, .value-card:hover p { color: var(--white) !important; }
.value-card:hover .value-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.value-icon {
  width: 60px; height: 60px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--teal);
  transition: all 0.3s;
}
.value-card h5 { color: var(--deep); margin-bottom: 8px; transition: color 0.3s; }
.value-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; transition: color 0.3s; }
.quote-block {
  background: var(--deep);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15rem;
  color: rgba(201,169,110,0.08);
  line-height: 1;
}
.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.quote-block cite {
  color: var(--accent);
  font-size: 0.85rem;
  font-style: normal;
  display: block;
  margin-top: 16px;
}

/* ---- FOOTER ---- */
.footer {
  background: #091c23;
  padding: 70px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
}
.footer-brand span { color: var(--accent); }
.footer-brand small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: -4px;
}
.footer p { font-size: 0.875rem; line-height: 1.8; }
.footer-heading { color: var(--white); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.footer-link {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 50px;
}
.footer-bottom p { font-size: 0.8rem; margin: 0; }
.footer-crm {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--accent);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: all 0.3s;
  animation: float-pulse 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--deep);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- PARALLAX SECTIONS ---- */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .parallax-section { background-attachment: scroll; }
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible { opacity: 1; }

/* ---- DIVIDER ---- */
.divider-accent {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider-accent.center { margin: 16px auto 28px; }

/* ---- UTILITY ---- */
.text-accent { color: var(--accent) !important; }
.text-teal { color: var(--teal) !important; }
.bg-deep { background: var(--deep) !important; }
.bg-teal { background: var(--teal) !important; }
.bg-light-custom { background: var(--light-bg) !important; }
.fw-light { font-weight: 300; }
.fw-medium { font-weight: 500; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-img-wrap { margin-top: 48px; }
  .about-badge { bottom: 12px; right: 12px; }
  .navbar-collapse { background: var(--deep); padding: 16px; border-radius: var(--radius); margin-top: 8px; }
}
@media (max-width: 767px) {
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .infographic-steps { flex-direction: column; }
  .cta-box { padding: 32px 24px; }
  .form-wrapper { padding: 28px 20px; }
  .quote-block { padding: 40px 24px; }
  .hero-img-card { display: none; }
  .symptom-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { padding: 28px 16px; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 480px) {
  .symptom-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}
