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

:root {
  --cream: #FDF8F3;
  --cream-dark: #F5EDE4;
  --teal: #3A8C84;
  --teal-light: #5BABA2;
  --teal-dark: #2D6E67;
  --coral: #E8907A;
  --coral-light: #F2A999;
  --text: #3D3D3D;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --shadow: 0 2px 20px rgba(58,140,132,0.08);
  --shadow-lg: 0 8px 40px rgba(58,140,132,0.12);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: auto; scroll-padding-top: 80px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,248,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,140,132,0.08);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.01em;
}
.nav-brand img {
  height: 80px;
  width: auto;
  display: block;
}
.nav-brand span { color: var(--coral); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.25s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === HERO === */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(58,140,132,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,144,122,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-size: 2.95rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.hero-text h1 span { color: var(--coral); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--teal);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  width: 420px; height: 480px;
  border-radius: 200px 200px 120px 120px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrapper .placeholder-photo {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}
.placeholder-photo svg { margin-bottom: 16px; opacity: 0.7; }
.hero-badge {
  position: absolute;
  bottom: 30px; left: -30px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
  z-index: 2;
}
.hero-badge .badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--coral);
  display: block;
  line-height: 1;
}

/* === SECTION COMMON === */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 12px;
}

/* === ATENDIMENTOS === */
.atendimentos { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--teal);
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
}
.service-card:hover {
  border-color: rgba(58,140,132,0.12);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(58,140,132,0.1), rgba(58,140,132,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.service-card h3 {
  font-size: 1.4rem;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}



/* === CREDIBILIDADE === */
.trust-strip {
  padding: 0 0 70px;
  margin-top: -35px;
  position: relative;
  z-index: 2;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card {
  background: var(--white);
  border: 1px solid rgba(58,140,132,0.08);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.trust-card strong {
  display: block;
  color: var(--teal-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 6px;
}
.trust-card span { color: var(--text-light); font-size: 0.88rem; }

/* === SINAIS / MINI CARDS === */
.sinais { background: var(--cream); }
.sinais-grid, .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mini-card, .step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58,140,132,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mini-card:hover, .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mini-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 14px;
  font-size: 1.45rem;
  margin-bottom: 16px;
}
.mini-card h3, .step-card h3 {
  font-size: 1.35rem;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.mini-card p, .step-card p { color: var(--text-light); font-size: 0.95rem; }

/* === CTA BAND === */
.cta-band {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(58,140,132,0.12), rgba(232,144,122,0.12));
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--white);
  border-radius: calc(var(--radius) + 8px);
  padding: 42px;
  box-shadow: var(--shadow-lg);
}
.cta-content h2 { color: var(--teal-dark); font-size: 2.1rem; margin-bottom: 8px; }
.cta-content p { color: var(--text-light); }

/* === CONSULTA / STEPS === */
.consulta { background: var(--white); }
.steps-grid { grid-template-columns: repeat(4, 1fr); }
.step-card span {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

/* === FAQ === */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58,140,132,0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--teal-dark);
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  color: var(--coral);
  font-size: 1.4rem;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding: 0 24px 22px; color: var(--text-light); }

/* === SOBRE === */
.sobre .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.sobre-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.sobre-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
}
.sobre-content h2 {
  font-size: 2.4rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.sobre-content .crm {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}
.sobre-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}
.sobre-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58,140,132,0.08);
}
.highlight-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.highlight-item span { font-size: 0.9rem; font-weight: 500; color: var(--text); }

/* === CONTATO === */
.contato { background: var(--white); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contato-info h3 {
  font-size: 1.6rem;
  color: var(--teal-dark);
  margin-bottom: 24px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(58,140,132,0.1), rgba(58,140,132,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.info-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}
.info-item span, .info-item a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.info-item a:hover { color: var(--teal); }

.contato-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input, .form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(58,140,132,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all 0.25s ease;
}
.social-link:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

/* === FOOTER === */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(58,140,132,0.08);
}
.footer p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.footer .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }

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

/* === MOBILE MENU === */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active { display: block; opacity: 1; }

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { width: 300px; height: 340px; }
  .hero-badge { left: auto; right: -10px; bottom: 20px; }
  .hero-text h1 { font-size: 2.4rem; }

  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .sinais-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-content { flex-direction: column; text-align: center; }

  .sobre .container { grid-template-columns: 1fr; gap: 40px; }
  .sobre-image { max-width: 360px; margin: 0 auto; }
  .sobre-content { text-align: center; }
  .sobre-highlights { grid-template-columns: 1fr; }

  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-brand img { height: 60px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: -4px 0 30px rgba(0,0,0,0.08);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 130px 0 70px; }
  .hero-text h1 { font-size: 2rem; }
  .section { padding: 70px 0; }
  .section-header h2 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust-grid, .sinais-grid, .steps-grid { grid-template-columns: 1fr; }
  .trust-strip { padding-bottom: 50px; margin-top: -20px; }
  .cta-content { padding: 30px 22px; }
  .cta-content h2 { font-size: 1.7rem; }
}

/* === DOENÇAS OCULARES / PÁGINA EDUCATIVA === */
.doencas-home { background: var(--white); }
.condition-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.condition-preview-card {
  background: var(--cream);
  border: 1px solid rgba(58,140,132,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.condition-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(58,140,132,0.18);
}
.condition-preview-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  font-size: 1.45rem;
  margin-bottom: 16px;
}
.condition-preview-card h3 {
  font-size: 1.35rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.condition-preview-card p { color: var(--text-light); font-size: 0.95rem; }
.center-action { text-align: center; margin-top: 34px; }

.page-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(58,140,132,0.12), transparent 38%),
    radial-gradient(circle at bottom left, rgba(232,144,122,0.12), transparent 35%),
    var(--cream);
}
.page-hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  color: var(--teal-dark);
  font-size: 3rem;
  margin-bottom: 18px;
}
.page-hero p {
  color: var(--text-light);
  font-size: 1.08rem;
  margin: 0 auto 30px;
  max-width: 760px;
}
.page-hero .hero-buttons { justify-content: center; }
.disease-index { background: var(--white); padding-bottom: 60px; }
.disease-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.disease-nav a {
  background: var(--cream);
  border: 1px solid rgba(58,140,132,0.12);
  color: var(--teal-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}
.disease-nav a:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.disease-list { background: var(--cream); padding-top: 60px; }
.disease-list .container { display: grid; gap: 26px; }
.disease-card {
  background: var(--white);
  border: 1px solid rgba(58,140,132,0.08);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  scroll-margin-top: 110px;
}
.disease-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.disease-card h2 {
  color: var(--teal-dark);
  font-size: 2rem;
  margin-bottom: 10px;
}
.disease-card p { color: var(--text-light); }
.disease-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 22px 0;
}
.disease-columns h3 {
  color: var(--teal-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.disease-columns ul { list-style: none; display: grid; gap: 8px; }
.disease-columns li {
  color: var(--text-light);
  padding-left: 22px;
  position: relative;
}
.disease-columns li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--coral);
  font-weight: 800;
}
.inline-cta {
  color: var(--teal);
  font-weight: 800;
  display: inline-flex;
  margin-top: 2px;
}
.inline-cta:hover { color: var(--teal-dark); }
.alert-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.alert-list span {
  background: var(--white);
  color: var(--teal-dark);
  border: 1px solid rgba(58,140,132,0.08);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
}
.info-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-lg);
  padding: 38px;
  text-align: center;
}
.info-box h3 { color: var(--teal-dark); font-size: 1.7rem; margin-bottom: 10px; }
.info-box p { color: var(--text-light); margin-bottom: 24px; }

@media (max-width: 968px) {
  .condition-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .disease-card { grid-template-columns: 1fr; }
  .disease-columns { grid-template-columns: 1fr; }
  .alert-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .condition-preview-grid, .alert-list { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 70px; }
  .page-hero h1 { font-size: 2.2rem; }
  .disease-card { padding: 26px 22px; }
  .disease-card h2 { font-size: 1.7rem; }
}
