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

:root {
  --teal:        #6BBFB5;
  --teal-light:  #A8DAD5;
  --teal-dark:   #4A9F95;
  --teal-pale:   #EAF6F5;
  --teal-muted:  #C8E8E5;
  --brown:       #8B7355;
  --brown-dark:  #5A4A35;
  --off-white:   #F8F6F2;
  --white:       #FFFFFF;
  --text-dark:   #2C2C2C;
  --text-mid:    #5A5A5A;
  --text-light:  #8A8A8A;
  --border:      #E8E4DE;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.08);

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.section-label.light { color: rgba(255,255,255,0.75); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(107,191,181,0.38);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 28px rgba(107,191,181,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal-pale);
}

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* =============================================
   HEADER
   ============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 32px;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding var(--transition);
}
#header.scrolled .header-inner { padding-top: 14px; padding-bottom: 14px; }

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-right: auto;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.logo-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--teal-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#nav { display: flex; gap: 28px; }
#nav a {
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
#nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width var(--transition);
}
#nav a:hover { color: var(--teal-dark); }
#nav a:hover::after { width: 100%; }

.header-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 280px; height: 100vh;
  background: var(--white);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
  padding: 88px 32px 40px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-link {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 400;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.mobile-cta { margin-top: 12px; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,191,181,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 20px;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 22px;
  opacity: 0;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.hero-badge .stars {
  color: #F4B942;
  font-size: 1rem;
  letter-spacing: 2px;
}
.hero-badge span {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 400;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

#tree-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(107,191,181,0.15));
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* =============================================
   SOBRE
   ============================================= */
.sobre { background: var(--white); }

.sobre-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.sobre-image {
  position: relative;
}

.sobre-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--teal-pale);
}

.sobre-card-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 110px;
}
.sobre-stat {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--teal-dark);
  line-height: 1;
}
.sobre-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

.sobre-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.sobre-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 32px;
}
.badge {
  padding: 6px 16px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =============================================
   ÁREAS DE ATENDIMENTO
   ============================================= */
.atendimento {
  background: var(--off-white);
}

.areas-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 840px;
  margin: 0 auto;
}

.area-item {
  display: grid;
  grid-template-columns: 56px 1fr 1px;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  position: relative;
}

.area-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.area-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.area-item:hover .area-icon {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.area-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.area-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}

.area-line { display: none; }

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos { background: var(--white); }

.servicos-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.servicos-lista {
  display: flex;
  flex-direction: column;
}

.servico-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: background var(--transition);
}

.servico-row.featured { }
.servico-row.highlight .servico-nome { color: var(--teal-dark); }

.servico-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.servico-nome {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
}
.servico-desc {
  font-size: 0.8rem;
  color: var(--text-light);
}
.servico-preco {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--teal-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.servicos-cta {
  position: sticky;
  top: 120px;
  padding: 36px;
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
}
.servicos-cta p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.65;
}
.servicos-cta .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.servicos-cta .btn:last-child { margin-bottom: 0; }

/* =============================================
   CONSULTÓRIO
   ============================================= */
.consultorio { background: var(--off-white); }

.consultorio-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.consultorio-main {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.consultorio-main img {
  transition: transform 0.6s ease;
}
.consultorio-main:hover img { transform: scale(1.03); }

.consultorio-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.consultorio-side img {
  height: 50%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.consultorio-side div:hover img { transform: scale(1.03); }

.consultorio-address {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.address-icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  flex-shrink: 0;
}

.address-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.address-text strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}
.address-text span {
  font-size: 0.87rem;
  color: var(--text-mid);
}

/* =============================================
   DEPOIMENTOS
   ============================================= */
.depoimentos { background: var(--white); }

.depoimentos-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
  font-size: 1.1rem;
  color: #F4B942;
}
.depoimentos-stars span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: var(--font-sans);
}

.depoimentos-slider-wrap {
  position: relative;
  overflow: hidden;
}

.depoimentos-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-card {
  min-width: calc(33.333% - 16px);
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 36px;
  flex-shrink: 0;
  position: relative;
}
.depoimento-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--teal-muted);
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}
.depoimento-card p {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-top: 20px;
  font-style: italic;
}
.depoimento-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.stars-small { color: #F4B942; font-size: 0.85rem; }
.depoimento-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.slider-btn {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all var(--transition);
}
.slider-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-pale);
}
.slider-dots {
  display: flex;
  gap: 6px;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--teal-dark);
  width: 18px;
  border-radius: 3px;
}

/* =============================================
   FORMAÇÃO (TIMELINE)
   ============================================= */
.formacao { background: var(--off-white); }

.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 11px; top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--teal);
  transition: background var(--transition), transform var(--transition);
}
.timeline-item:hover .timeline-dot {
  background: var(--teal);
  transform: scale(1.2);
}

.timeline-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-final h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-contact-info {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.cta-contact-info span,
.cta-contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.cta-contact-info a:hover { color: var(--white); }

.doctoralia-link {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-leaf {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}
.cta-leaf-1 {
  width: 300px; height: 300px;
  top: -80px; left: -80px;
}
.cta-leaf-2 {
  width: 200px; height: 200px;
  bottom: -60px; right: -40px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 72px 0 0;
}

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

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-title { color: var(--teal-light); }
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--teal-light); }

.doctoralia-footer-link {
  color: var(--teal-light) !important;
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition), transform var(--transition);
}
.social-link:hover {
  color: var(--teal-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .sobre-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .servicos-inner {
    grid-template-columns: 1fr;
  }
  .servicos-cta {
    position: static;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .depoimento-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  #nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  #tree-svg { max-width: 280px; }

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badge { justify-content: center; }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-image { max-width: 320px; margin: 0 auto; }
  .sobre-card-float { right: 0; }

  .area-item {
    grid-template-columns: 48px 1fr;
  }

  .consultorio-grid {
    grid-template-columns: 1fr;
  }
  .consultorio-side {
    flex-direction: row;
    height: 200px;
  }
  .consultorio-side img { height: 100%; }

  .consultorio-address {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .depoimento-card {
    min-width: calc(100% - 0px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-contact-info {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 280px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 300px; }
  .header-inner { padding: 16px 20px; }
  .timeline { padding-left: 32px; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-line { animation: none; }
  html { scroll-behavior: auto; }
}

/* =============================================
   ANIMATION INITIAL STATES
   ============================================= */
.area-item { opacity: 0; transform: translateX(-20px); }
.servico-row { opacity: 0; transform: translateY(10px); }
.depoimento-card-anim { opacity: 0; transform: translateY(24px); }
.consultorio-grid { opacity: 0; transform: translateY(30px); }
