:root {
  --primary: #1B3A4B;
  --primary-dark: #0F2A38;
  --primary-light: #264D5E;
  --accent: #C9A96E;
  --accent-light: #E8D5A8;
  --bg: #FAF8F5;
  --bg-alt: #F0EBE3;
  --card: #FFFFFF;
  --text-primary: #1B3A4B;
  --text-body: #3D3D3D;
  --text-secondary: #6B6B6B;
  --border: #E8D5A8;
  --whatsapp: #25D366;

  --gradient-hero: linear-gradient(135deg, #0F2A38 0%, #1B3A4B 60%, #264D5E 100%);
  --gradient-primary: linear-gradient(135deg, #1B3A4B 0%, #264D5E 100%);

  --font-h1: 'Playfair Display', serif;
  --font-h2: 'Cormorant Garamond', serif;
  --font-body: 'Source Sans 3', sans-serif;

  --shadow-sm: 0 4px 6px -1px rgba(27, 58, 75, 0.05), 0 2px 4px -1px rgba(27, 58, 75, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(27, 58, 75, 0.08), 0 4px 6px -2px rgba(27, 58, 75, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(27, 58, 75, 0.1), 0 10px 10px -5px rgba(27, 58, 75, 0.05);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-family: var(--font-h1);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-family: var(--font-h2);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  font-family: var(--font-h2);
  font-weight: 500;
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--accent);
  width: 0%;
  z-index: 10000;
  transition: width 0.1s ease;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.875rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 6rem 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.bg-dark {
  background-color: var(--primary-dark);
  color: white;
}

.bg-dark h2,
.bg-dark h3 {
  color: white;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--primary-dark);
}

.btn--primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.btn--outline {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn--white {
  background-color: white;
  color: var(--primary-dark);
}

.btn--white:hover {
  background-color: var(--bg);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background-color: var(--whatsapp);
  color: white;
}

.btn--whatsapp:hover {
  background-color: #21bd5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn--secondary {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--primary);
}

.btn--secondary:hover {
  background-color: rgba(201, 169, 110, 0.1);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Reveal Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 1. HEADER FIXO */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1.5rem 0;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-h1);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  transition: color 0.4s ease;
}

.header.scrolled .logo-name {
  color: var(--primary);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  transition: color 0.4s ease;
}

.header.scrolled .logo-sub {
  color: var(--primary-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: white;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.header.scrolled .nav-link {
  color: var(--primary);
}

.header.scrolled .nav-link:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.header.scrolled .mobile-menu-btn {
  color: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 42, 56, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  padding-top: 5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-card {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(15, 42, 56, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.mobile-overlay.active .mobile-menu-card {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(15, 42, 56, 0.08);
}

.mobile-menu-logo {
  display: flex;
  flex-direction: column;
}

.mobile-logo-name {
  font-family: var(--font-h2);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.mobile-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #e05c43;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.125rem;
}

.mobile-menu-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-close-btn {
  background: none;
  border: none;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.mobile-menu-close-btn:hover {
  transform: scale(1.08);
}

.mobile-menu-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 0;
}

.mobile-nav-links .mobile-link {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: color 0.2s ease;
}

.mobile-nav-links .mobile-link:hover {
  color: var(--accent);
}

/* 2. HERO SECTION */
.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  /* Offset for header */
}

/* ECG Pattern Background */
.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="none" stroke="%23C9A96E" stroke-width="2" stroke-opacity="0.08" d="M0,160 L100,160 L120,80 L160,280 L200,40 L240,240 L260,160 L1440,160"/></svg>');
  background-repeat: repeat-x;
  background-position: center;
  background-size: 800px auto;
  opacity: 0.5;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-eyebrow {
  background: rgba(201, 169, 110, 0.08);
  color: var(--accent-light);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--font-h2);
  color: var(--accent-light);
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.08);
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.hero-badge i {
  color: var(--accent);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 1;
}

.hero-image-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px dashed rgba(201, 169, 110, 0.3);
  border-radius: 24px;
  z-index: 2;
  animation: spin 60s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero-image-inner {
  position: relative;
  z-index: 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background-color: var(--primary);
}

.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 4;
}

.hero-floating-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.hero-floating-badge-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.hero-floating-badge-text span {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

/* 3. INFO BAR */
.info-bar {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-card-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.info-card-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.info-card-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* 4. FILOSOFIA DE CUIDADO */
.section-header {
  margin-bottom: 4rem;
}

.section-header p {
  font-family: var(--font-h2);
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.filosofia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.filosofia-text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.filosofia-cards {
  display: grid;
  gap: 1.5rem;
}

.pilares-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.pilares-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.pilares-icon {
  background: var(--bg);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.pilares-content h4 {
  margin-bottom: 0.5rem;
}

.pilares-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* 5. ESPECIALIDADES */
.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.esp-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.esp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.esp-card.featured {
  border: 1px solid var(--accent);
  background: linear-gradient(to bottom, #FFFFFF, #FAF8F5);
  position: relative;
}

.badge-featured {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.1em;
}

.esp-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.esp-card.featured .esp-icon {
  background: var(--accent-light);
  color: var(--primary-dark);
}

.esp-card:hover .esp-icon {
  background: var(--primary);
  color: white;
}

.esp-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.esp-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  flex-grow: 1;
}

.esp-link {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-alt);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.esp-link:hover {
  color: var(--accent);
}

/* 6. CTA INTERMEDIÁRIO */
.cta-banner {
  background: var(--gradient-primary);
  padding: 5rem 0;
  color: white;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner>p {
  color: var(--accent-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
}

.cta-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cta-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  overflow: hidden;
  background: var(--bg);
}

.cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-info {
  text-align: left;
}

.cta-info strong {
  display: block;
  font-size: 1.125rem;
}

.cta-info span {
  font-size: 0.875rem;
  color: var(--accent-light);
}

/* 7. JORNADA DO PACIENTE */
.jornada {
  position: relative;
}

.jornada-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

.jornada-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(201, 169, 110, 0.3);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  font-family: var(--font-h1);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-dark);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.step-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* 8. SOBRE O DR. MURILO */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-imagem {
  position: relative;
}

.sobre-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background-color: var(--primary-light);
}

.sobre-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-decor-rect {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: 12px;
  z-index: 1;
  transform: rotate(-3deg);
}

.sobre-floating {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sobre-floating i {
  color: var(--primary);
}

.sobre-floating div strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.sobre-floating div span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.sobre-conteudo h2 {
  margin-bottom: 1.5rem;
}

.sobre-conteudo>p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
}

.sobre-lista-grupo {
  margin-bottom: 2rem;
}

.sobre-lista-grupo h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.sobre-lista {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sobre-lista li {
  display: flex;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.sobre-lista li span {
  flex-shrink: 0;
}

.sobre-conteudo .btn {
  margin-top: 1rem;
}

/* 9. DEPOIMENTOS */
.depoimentos-carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  margin: 0 -1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card-wrapper {
  flex: 0 0 33.333%;
  padding: 0 1rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: var(--font-h1);
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.review-stars {
  color: var(--accent);
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars i {
  fill: var(--accent);
}

.review-text {
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--bg-alt);
  padding-top: 1rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-h2);
  font-size: 1.125rem;
}

.review-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.review-info span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 58, 75, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.carousel-btn {
  background: white;
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* 10. CONSULTÓRIO */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contato-info h2 {
  margin-bottom: 1rem;
}

.contato-info>p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

.contato-lista {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contato-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contato-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contato-item-text strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contato-item-text p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.contato-mapa {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.contato-mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 11. FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  gap: 1rem;
}

.faq-icon {
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding-bottom: 1.5rem;
  color: var(--text-body);
  font-size: 1rem;
}

/* 12. FOOTER */
.footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-name {
  font-family: var(--font-h1);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  max-width: 300px;
}

.footer-crm {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}

.footer h4 {
  font-family: var(--font-h2);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-social:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

/* 13. WHATSAPP FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  z-index: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
  animation: none;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.tooltip {
  position: absolute;
  right: 100%;
  margin-right: 1rem;
  background: var(--primary-dark);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(10px);
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--primary-dark);
}

.whatsapp-fab:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero .container {
    gap: 2rem;
  }

  .info-bar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .filosofia-grid {
    gap: 2rem;
  }

  .especialidades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-grid {
    gap: 3rem;
  }

  .review-card-wrapper {
    flex: 0 0 50%;
  }

  .contato-grid {
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 160px;
    padding-bottom: 4rem;
  }

  .hero-subtitle {
    line-height: 1.2;
  }

  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .info-bar-grid {
    grid-template-columns: 1fr;
  }

  .filosofia-grid {
    grid-template-columns: 1fr;
  }

  .jornada-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .jornada-line {
    top: 0;
    bottom: 0;
    left: 40px;
    width: 1px;
    height: 100%;
  }

  .step-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 100px;
    position: relative;
  }

  .step-icon {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .step-number {
    left: 40px;
    top: 10px;
    transform: none;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .sobre-img-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .especialidades-grid {
    grid-template-columns: 1fr;
  }

  .review-card-wrapper {
    flex: 0 0 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-floating-badge {
    right: 0;
    bottom: -10px;
    padding: 0.75rem;
  }
}

/* Performance image wrappers */
.hero-image-inner picture,
.sobre-img-wrapper picture,
.cta-avatar picture,
.contato-foto picture {
  display: block;
  width: 100%;
  height: 100%;
}

.contato-foto {
  position: relative;
  display: block;
  min-height: 400px;
  background: var(--primary-dark);
}

.contato-foto img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contato-foto:hover img {
  transform: scale(1.025);
}

@media (max-width: 768px) {
  .contato-foto,
  .contato-foto img {
    min-height: 320px;
  }
}


/* Mobile overflow guards */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 480px) {
  .hero-image-wrapper {
    overflow: hidden;
  }

  .hero-image-ring {
    inset: -12px;
  }

  .sobre-imagem {
    overflow: hidden;
  }

  .sobre-floating {
    right: 8px;
    max-width: calc(100% - 16px);
  }

  .depoimentos-carousel {
    margin-left: 0;
    margin-right: 0;
  }
}
