/* ==========================================================================
   DRA. GLAUCIA ATMAN - V2 EXECUTIVE & EDITORIAL MEDICAL DESIGN
   Minimalista, Sofisticado, Tipografia Equilibrada e Cores em Detalhes
   ========================================================================== */

:root {
  /* --- Paleta Oficial em Aplicação Sofisticada --- */
  --navy-900: #0B1E33;         /* Marinho Profundo (Títulos principais, Botão principal) */
  --navy-800: #132A44;
  --navy-700: #1D3756;
  --navy-50:  #F2F6FA;

  --rose-500: #C59B90;         /* Rosa Antigo / Mauve (Acentos, Detalhes, Bordas Ativas) */
  --rose-600: #B3867A;
  --rose-700: #9C6F63;
  --rose-100: #F3EAE7;
  --rose-50:  #FAF6F4;

  --sand-50:  #FAF8F5;         /* Off-white quente suave para alternância de seções */
  --sand-100: #F4EFEA;
  --border-subtle: #EAE4DE;    /* Borda ultrafina e elegante */
  --border-focus: #C59B90;

  --text-main: #1C2631;        /* Texto principal escuro e nítido */
  --text-muted: #5C6975;       /* Texto secundário */
  --text-light: #8593A0;

  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5D;

  /* --- Tipografia Editorial & Proporcional --- */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* --- Sombras Sutis & Refinadas (Zero Exagero) --- */
  --shadow-subtle: 0 2px 8px rgba(11, 30, 51, 0.04);
  --shadow-card: 0 4px 20px rgba(11, 30, 51, 0.06);
  --shadow-hover: 0 12px 32px rgba(11, 30, 51, 0.09);
  --shadow-modal: 0 24px 60px rgba(11, 30, 51, 0.18);

  /* --- Raio & Transições --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1160px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: #FFFFFF;
  line-height: 1.6;
  font-size: 15px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TIPOGRAFIA REFINADA (TAMANHOS EQUILIBRADOS)
   ========================================================================== */

h1, h2, h3, h4 {
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-700);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem auto;
}

.section-head h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   BOTÕES SOFISTICADOS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled,
.btn.is-loading {
  opacity: 0.8;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.btn-primary {
  background: var(--navy-900);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(11, 30, 51, 0.16);
}

.btn-primary:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11, 30, 51, 0.22);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--navy-900);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  border-color: var(--rose-500);
  color: var(--rose-700);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.8125rem;
}

/* ==========================================================================
   HEADER & TOPBAR
   ========================================================================== */

.top-bar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.dot-pulse {
  width: 6px;
  height: 6px;
  background: var(--whatsapp);
  border-radius: 50%;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
}

.top-bar-right a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-right a:hover {
  color: #FFFFFF;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo-img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--rose-600);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: var(--navy-900);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (EDITORIAL & ELEGANTE)
   ========================================================================== */

.hero {
  padding: 4.5rem 0 4.5rem 0;
  background: linear-gradient(180deg, var(--sand-50) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--navy-900);
}

.hero-content h1 .text-accent {
  color: var(--rose-600);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-credentials-row {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cred-item i {
  color: var(--rose-500);
  font-size: 0.875rem;
}

/* Hero Portrait Frame (Sem elementos flutuando por cima) */
.hero-portrait-card {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  padding: 0.65rem;
}

.hero-portrait-inner {
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  background: var(--sand-50);
}

.hero-portrait-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-portrait-caption {
  padding: 0.85rem 0.5rem 0.35rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.caption-name {
  font-weight: 700;
  color: var(--navy-900);
}

.caption-role {
  color: var(--rose-700);
  font-weight: 600;
}

/* ==========================================================================
   STATEMENT BANNER (MINIMALISTA)
   ========================================================================== */

.statement-strip {
  background: var(--sand-50);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
  text-align: center;
}

.statement-text {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--navy-900);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.statement-text span {
  color: var(--rose-600);
}

/* ==========================================================================
   CREDENCIAIS & INSTITUIÇÕES
   ========================================================================== */

.credentials-bar {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.credential-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
}

.credential-box i {
  font-size: 1.15rem;
  color: var(--rose-500);
}

.credential-box div h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-900);
}

.credential-box div p {
  font-size: 0.725rem;
  color: var(--text-light);
  margin: 0;
}

/* ==========================================================================
   DIFERENCIAIS (CARDS LIMPOS)
   ========================================================================== */

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--sand-50);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.clean-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-subtle);
}

.clean-card:hover {
  transform: translateY(-3px);
  border-color: var(--rose-500);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  color: var(--rose-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.clean-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.6rem;
}

.clean-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.service-list li {
  font-size: 0.8125rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.service-list li i {
  color: var(--rose-500);
  font-size: 0.75rem;
}

.card-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

.card-link:hover {
  color: var(--rose-600);
}

/* ==========================================================================
   PASSO A PASSO (COMO FUNCIONA)
   ========================================================================== */

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--rose-700);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-box h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SOBRE A MÉDICA (EDITORIAL DOSSIER)
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  padding: 0.65rem;
  box-shadow: var(--shadow-card);
}

.about-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: calc(var(--radius-lg) - 6px);
  display: block;
}

.about-bio h2 {
  font-size: 1.85rem;
  margin-bottom: 0.35rem;
}

.about-role-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rose-700);
  margin-bottom: 1.25rem;
}

.about-bio p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-pillars-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem 0;
}

.pillar-card {
  background: var(--sand-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}

.pillar-card h4 {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.pillar-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}

/* ==========================================================================
   DEPOIMENTOS (DELICADOS E LIMPOS)
   ========================================================================== */

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  display: flex;
  gap: 0.2rem;
  color: #D4A373;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.925rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.patient-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  color: var(--rose-700);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
}

.patient-meta {
  font-size: 0.725rem;
  color: var(--text-light);
}

/* ==========================================================================
   FAQ (ACCORDION REFINADO)
   ========================================================================== */

.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background: #FFFFFF;
}

.faq-item.active {
  border-color: var(--rose-500);
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.35rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-chevron {
  font-size: 0.75rem;
  color: var(--rose-500);
  transition: transform var(--transition);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.35rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.15rem;
}

/* ==========================================================================
   FINAL CTA BOX
   ========================================================================== */

.cta-box {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  color: #FFFFFF;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.cta-box h2 {
  color: #FFFFFF;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto 2rem auto;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-input {
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  color: var(--navy-900);
  outline: none;
}

.cta-input:focus {
  border-color: var(--rose-500);
}

.btn-cta-submit {
  background: var(--rose-500);
  color: #FFFFFF;
}

.btn-cta-submit:hover {
  background: var(--rose-600);
}

/* ==========================================================================
   FOOTER (PROFISSIONAL & CONFORME)
   ========================================================================== */

.site-footer {
  background: var(--sand-50);
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 1.5rem 0;
  font-size: 0.8125rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 1rem 0;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--rose-600);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.75rem;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 30, 51, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-modal);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--sand-50);
  border: 1px solid var(--border-subtle);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy-900);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.modal-header p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--rose-500);
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: var(--whatsapp);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas, .hero-credentials-row {
    justify-content: center;
  }

  .cards-grid-3, .steps-row, .credentials-grid {
    grid-template-columns: 1fr;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ==========================================================================
   THANK YOU PAGE (TYP) STYLES - EXECUTIVE & REFINED
   ========================================================================== */

.typ-hero {
  padding: 4.5rem 0 3.5rem 0;
  background: radial-gradient(circle at 50% 20%, var(--rose-50) 0%, #FFFFFF 70%);
  text-align: center;
}

.typ-hero-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  max-width: 820px;
  margin: 0 auto;
}

.typ-success-wrapper {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.typ-success-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  animation: typPulse 2.5s infinite;
}

@keyframes typPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.typ-hero h1 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.typ-hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 2rem auto;
  line-height: 1.65;
}

.typ-action-box {
  background: var(--sand-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 2rem;
}

.typ-action-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.typ-action-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.btn-whatsapp-large {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF;
  font-size: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
}

.btn-whatsapp-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #1EBE5D 0%, #159E4A 100%);
}

.typ-steps-section {
  padding: 4rem 0;
  background: #FFFFFF;
}

.typ-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.typ-step-card {
  background: var(--sand-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition);
}

.typ-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--rose-500);
}

.typ-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy-900);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.typ-step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.typ-step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.typ-doctor-section {
  padding: 4rem 0;
  background: var(--sand-50);
  border-top: 1px solid var(--border-subtle);
}

.typ-doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}

.typ-doctor-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.typ-doctor-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rose-100);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-card);
}

.typ-doctor-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.typ-doctor-card p {
  font-size: 0.85rem;
  color: var(--rose-700);
  font-weight: 600;
  margin-bottom: 1rem;
}

.typ-highlights-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.typ-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.typ-highlight-icon {
  width: 42px;
  height: 42px;
  background: var(--rose-50);
  color: var(--rose-700);
  border: 1px solid var(--rose-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.typ-highlight-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.typ-highlight-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 992px) {
  .typ-steps-grid {
    grid-template-columns: 1fr;
  }
  .typ-doctor-grid {
    grid-template-columns: 1fr;
  }
}

