/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:        #465038;
  --primary-dark:   #333b29;
  --secondary:      #c3b7a5;
  --secondary-dark: #a89c8a;
  --bg:             #fdfffa;
  --bg-alt:         #f4f1ec;
  --whatsapp:       #25D366;
  --whatsapp-dark:  #1ebe5d;
  --text:           #2e2e2e;
  --text-light:     #5a5a5a;
  --white:          #ffffff;
  --radius:         14px;
  --shadow:         0 8px 32px rgba(70, 80, 56, 0.12);
  --shadow-lg:      0 16px 56px rgba(70, 80, 56, 0.18);
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   SCROLL ANIMATION CLASSES
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger delay utility */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }
.delay-7 { transition-delay: 0.7s !important; }
.delay-8 { transition-delay: 0.8s !important; }
.delay-9 { transition-delay: 0.9s !important; }
.delay-10 { transition-delay: 1.0s !important; }
.delay-11 { transition-delay: 1.1s !important; }
.delay-12 { transition-delay: 1.2s !important; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.wpp-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* =============================================
   SECTION TITLES
============================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 19px;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  margin: 16px auto;
}

/* =============================================
   HEADER / NAVBAR
============================================= */
/* .header (Removido) */


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-text span {
  font-weight: 400;
  color: var(--text-light);
  font-size: 13px;
  display: block;
  letter-spacing: 0.5px;
}

.header-cta {
  padding: 12px 24px;
  font-size: 15px;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-bg 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-bg 10s ease-in-out infinite reverse;
}

@keyframes float-bg {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-logo {
  width: 130px;
  height: auto;
  margin-bottom: 32px;
  display: block;
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #c3b7a5, #e8dfd2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero-micro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-micro::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.6; }
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  position: relative;
  animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), #7a8f62);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-card-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-card p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--bg-alt);
  border-radius: 12px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: var(--shadow);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--whatsapp);
  border-radius: 50%;
}

.floating-badge-1 {
  top: -16px;
  right: -20px;
  animation: badge-float 5s ease-in-out infinite;
}

.floating-badge-2 {
  bottom: -16px;
  left: -20px;
  animation: badge-float 7s ease-in-out infinite reverse;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =============================================
   SECTION 2: DIFERENCIAIS
============================================= */
.diferenciais {
  padding: 100px 0;
  background: var(--bg);
}

.diferenciais-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.diferenciais-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 0;
}

.diferenciais-header p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(168, 156, 138, 0.25);
  box-shadow: 0 2px 12px rgba(70, 80, 56, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.check-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(70, 80, 56, 0.12);
  border-color: rgba(70, 80, 56, 0.3);
}

.check-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), #7a8f62);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-content strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 4px;
}

.check-content span {
  font-size: 15px;
  color: var(--text-light);
}

/* Decorative side visual */
.diferenciais-visual {
  position: relative;
}

.diferenciais-bg-shape {
  position: absolute;
  inset: -30px;
  background: linear-gradient(135deg, rgba(195, 183, 165, 0.25), rgba(70, 80, 56, 0.08));
  border-radius: 30px;
  transform: rotate(-3deg);
  z-index: 0;
}

.diferenciais-img-wrap {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Carrossel da Clínica ──────────────────────────────────── */
.clinica-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 24px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
}

/* Botões prev / next */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(70, 80, 56, 0.2);
  color: var(--primary);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  opacity: 0;
  transition: opacity 0.3s, background 0.25s, transform 0.25s;
}

.clinica-carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(70, 80, 56, 0.25);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.carousel-btn--prev { left: 12px; }
.carousel-btn--next { right: 12px; }

/* Dots indicadores */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.35);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.85);
}

/* =============================================
   SECTION 3: SERVIÇOS
============================================= */
.servicos {
  padding: 100px 0;
  background: var(--bg-alt);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(70, 80, 56, 0.07);
  border: 1px solid rgba(168, 156, 138, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #7a8f62);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(70, 80, 56, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(70, 80, 56, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}

.service-card:hover .service-card-icon {
  background: rgba(70, 80, 56, 0.15);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--primary);
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
}

/* =============================================
   SECTION 4: MÉDICOS
============================================= */
.medicos {
  padding: 100px 0;
  background: var(--bg);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.doctors-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

.doctors-grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.doctor-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(70, 80, 56, 0.09);
  border: 1px solid rgba(168, 156, 138, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.doctor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--secondary) 0%, #b5a892 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.doctor-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  opacity: 0.7;
}

.doctor-photo-placeholder svg {
  width: 80px;
  height: 80px;
}

.doctor-photo-placeholder p {
  font-size: 13px;
  text-align: center;
  padding: 0 16px;
}

.doctor-info {
  padding: 24px;
}

.doctor-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.doctor-info .specialty {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.doctor-tag {
  display: inline-block;
  background: rgba(70, 80, 56, 0.09);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.doctors-grid--small {
  margin-top: 40px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 660px;
  margin-inline: auto;
}

.doctors-grid--small .doctor-info h3 {
  font-size: 18px;
}

.doctors-grid--small .doctor-info .specialty {
  font-size: 14px;
}

.doctor-curriculum {
  margin-top: 16px;
  border-top: 1px solid rgba(168, 156, 138, 0.2);
  padding-top: 12px;
}

.doctor-curriculum summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none; /* Hide default arrow in some browsers */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.doctor-curriculum summary::-webkit-details-marker {
  display: none;
}

.doctor-curriculum summary::after {
  content: '+';
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.doctor-curriculum[open] summary::after {
  transform: rotate(45deg);
}

.doctor-curriculum-content {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.doctor-curriculum-content p {
  margin-bottom: 8px;
}

.doctor-curriculum-content p:last-child {
  margin-bottom: 0;
}

/* =============================================
   SECTION 4: EXAMES
============================================= */
.exames {
  padding: 100px 0;
  background: var(--bg);
}

.exames-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.exames-visual {
  position: relative;
  background: var(--bg-alt);
  border-radius: 24px;
  aspect-ratio: 1/1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.exames-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exames-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exames-placeholder svg {
  width: 64px;
  height: 64px;
}

.exames-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.exame-item {
  position: relative;
}

.exame-item h3 {
  font-size: 21px;
  margin-bottom: 8px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.exame-item p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

.exame-divider {
  height: 1px;
  background: rgba(168, 156, 138, 0.15);
  margin-top: 32px;
}

.exame-item:last-child .exame-divider {
  display: none;
}

@media (max-width: 1024px) {
  .exames-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .exames-visual {
    max-width: 500px;
    margin-inline: auto;
    order: -1;
  }
}

/* =============================================
   SECTION: DRA AMANDA
============================================= */
.amanda-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.amanda-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.amanda-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.amanda-header {
  text-align: center;
  margin-bottom: 48px;
}

.amanda-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  color: var(--white);
}

.amanda-header .accent-line {
  background: linear-gradient(90deg, var(--white), var(--secondary));
}

.amanda-header p {
  color: rgba(255, 255, 255, 0.85);
}

.amanda-curriculum {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.amanda-curriculum strong {
  color: var(--white);
}

.amanda-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}

.amanda-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .doctors-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .amanda-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .amanda-photo {
    max-width: 400px;
    margin-inline: auto;
    order: -1;
  }
}

@media (max-width: 600px) {
  .doctors-grid--four {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* =============================================
   SECTION 5: LOCALIZAÇÃO
============================================= */
.localizacao {
  padding: 100px 0;
  background: var(--bg-alt);
}

.localizacao-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.localizacao-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 0;
}

.localizacao-header p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

.localizacao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(70, 80, 56, 0.06);
  border: 1px solid rgba(168, 156, 138, 0.2);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateX(6px);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(70, 80, 56, 0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 2px;
}

.info-card-text span {
  font-size: 15px;
  color: var(--text-light);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(168, 156, 138, 0.25);
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(160deg, #ddd9d1 0%, #ccc7bd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary);
  border-radius: 20px;
}

.map-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.6;
}

.map-placeholder p {
  font-size: 15px;
  opacity: 0.7;
  text-align: center;
  padding: 0 24px;
}

/* =============================================
   FOOTER CTA
============================================= */
.footer-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.footer-cta h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 16px;
}

.footer-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 19px;
  margin-bottom: 36px;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
  font-size: 15px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 80px;
  height: auto;
  display: block;
}

.footer-brand p {
  margin-top: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li svg {
  width: 16px;
  height: 16px;
  stroke: var(--secondary);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  max-width: 600px;
  line-height: 1.6;
}

/* =============================================
   FLOATING WHATSAPP BUTTON
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-float-tooltip {
  background: var(--white);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  white-space: nowrap;
  transform: translateX(10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float-btn {
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wpp-pulse 3s ease-in-out infinite;
}

@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.65);
  animation: none;
}

.whatsapp-float-btn svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .diferenciais-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .diferenciais-img-wrap {
    aspect-ratio: 16/9;
  }

  .img-placeholder {
    min-height: 280px;
  }

  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .localizacao-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-logo {
    width: 100px;
    margin-bottom: 24px;
  }

  .btn {
    padding: 16px 28px;
    font-size: 17px;
  }

  .doctors-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float-btn {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
}
