/* =========================================================================
   AMAUTA MED - Landing Page Styles
   Design System: Clinical Medical Blue + Teal Accents (Clean Light Theme)
   ========================================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* --- Fondo Clínico y Estéril --- */
  --bg-primary: #e4eff8;
  /* Fondo principal (Celeste suave clínico personalizado) */
  --bg-secondary: #ffffff;
  /* Fondo secundario (Blanco puro para alternancia) */
  --bg-card: #ffffff;
  /* Fondo de tarjetas (Blanco puro) */
  --bg-card-hover: #e8f4ff;
  /* Fondo al pasar el cursor (Celeste ultra-claro) */
  --bg-elevated: #ffffff;
  /* Fondo elevado para popups o modales */

  /* --- Verde/Teal Clínico (Acentos Secundarios de Salud) --- */
  --gold-primary: #0d9488;
  /* Teal principal (Verde sanitario clínico) */
  --gold-light: #14b8a6;
  /* Teal claro para estados hover o bordes */
  --gold-dark: #0f766e;
  /* Teal oscuro para contraste de texto */
  --gold-gradient: linear-gradient(135deg, #0284c7, #0d9488);
  /* Gradiente de innovación médica (Azul a Teal) */

  /* --- Azul Médico de Confianza (Botones y Acciones) --- */
  --green-primary: #0284c7;
  /* Azul médico (Color de acción principal) */
  --green-hover: #0369a1;
  /* Azul oscuro para hover de botones */
  --green-glow: rgba(2, 132, 199, 0.15);
  /* Resplandor azul para sombras activas */

  /* --- Celeste de Acento --- */
  --blue-accent: #0ea5e9;
  /* Celeste para pequeños badges o detalles */
  --blue-glow: rgba(14, 165, 233, 0.12);
  /* Resplandor celeste */

  /* --- Tipografía y Lectura (Contraste AAA) --- */
  --text-primary: #0f172a;
  /* Texto principal (Navy pizarra oscuro) */
  --text-secondary: #334155;
  /* Texto secundario (Gris pizarra medio) */
  --text-muted: #64748b;
  /* Texto desvanecido (Gris pizarra claro) */

  /* --- Bordes y Líneas --- */
  --border-subtle: rgba(119, 203, 245, 0.05);
  /* Bordes suaves para divisiones */
  --border-card: rgba(15, 23, 42, 0.08);
  /* Bordes definidos para componentes */

  /* --- Dimensiones y Spacing --- */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* --- Curvas de Transición (Animaciones) --- */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Radios de Bordes --- */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* --- Sombras Elevadas (Efecto Glassmorphism/Card) --- */
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.04);
  --shadow-elevated: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-gold: 0 4px 20px rgba(13, 148, 136, 0.08);
}

/* ---------- Refuerzo final del tema celeste salud ---------- */
body {
  background: linear-gradient(180deg, #eaf7fb 0%, #bfeaf2 46%, #f7fcfe 100%);
  color: #0b2f3a;
}

.navbar,
.navbar.scrolled,
.footer {
  background: rgba(234, 247, 251, 0.94);
  border-color: rgba(8, 124, 137, 0.14);
}

.hero,
.plans,
#planes,
.features,
.history,
.testimonials,
.cta-section {
  background: transparent;
  color: #0b2f3a;
}

#planes {
  background: linear-gradient(180deg, #bfeaf2 0%, #eaf7fb 58%, #f7fcfe 100%);
}

.hero-title,
.section-title,
#planes .section-title,
.features .section-title,
.history .section-title,
.testimonials .section-title,
.history-text h2,
#planes .plan-head h3,
.feature-card h3,
.author-name,
.footer-column h4,
.footer-newsletter h4 {
  color: #0b2f3a;
}

.hero-description,
.section-subtitle,
#planes .section-subtitle,
.features .section-subtitle,
.testimonials .section-subtitle,
.history-text p,
.history-quote p,
#planes .plan-price,
#planes .plan-card p,
#planes .plan-features li,
.feature-card p,
.feature-list li,
.testimonial-text,
.author-role,
.footer-brand p,
.footer-column ul li a,
.footer-newsletter p,
.footer-bottom p,
.footer-bottom-links a {
  color: #285868;
}

.nav-links a,
.btn-text,
.stat-number,
.founder-name,
.plan-head h3,
.plan-price,
.plan-card p,
.plan-features li {
  color: #0b2f3a;
}

.nav-toggle span {
  background: #0b2f3a;
}

.hero-badge,
.section-badge,
.history-tab,
.btn-outline,
.btn-mode {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(8, 124, 137, 0.24);
  color: #075463;
}

.hero-badge .badge-dot,
.section-badge .dot,
.scroll-mouse::after {
  background: #087c89;
}

.btn-primary,
.btn-chatbot,
.newsletter-form button,
#planes .plan-card .btn-primary,
.cta-button {
  background: #075463;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 84, 99, 0.18);
}

.btn-primary:hover,
.btn-chatbot:hover,
.newsletter-form button:hover,
#planes .plan-card .btn-primary:hover,
.cta-button:hover {
  background: #043b46;
  color: #ffffff;
}

.btn-secondary,
#plan-medico .btn-secondary,
#planes #plan-medico .btn-secondary {
  background: #ffffff;
  border-color: rgba(7, 84, 99, 0.24);
  color: #0b2f3a;
}

.btn-secondary:hover,
#plan-medico .btn-secondary:hover,
#planes #plan-medico .btn-secondary:hover {
  background: #eaf7fb;
  border-color: #087c89;
  color: #075463;
}

.hero-stat .stat-icon,
.feature-icon,
.plan-icon,
.author-avatar,
.founder-avatar {
  background: linear-gradient(135deg, #bfeaf2, #eaf7fb);
  color: #063f4b;
  border: 1px solid rgba(7, 84, 99, 0.14);
}

.plan-card,
#planes .plan-card,
.feature-card,
.testimonial-card,
.history-image-container,
.cta-card,
.hero-founder-badge,
.footer-social-link {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(7, 84, 99, 0.14);
  color: #0b2f3a;
  box-shadow: 0 8px 28px rgba(7, 84, 99, 0.08);
}

.plan-card:hover,
#planes .plan-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  border-color: rgba(8, 124, 137, 0.32);
  box-shadow: 0 16px 44px rgba(7, 84, 99, 0.14);
}

.feature-card::before {
  background: linear-gradient(135deg, #087c89, #1aa6b6);
}

.feature-list li .check,
.testimonial-stars,
.testimonial-text::before,
.footer-column ul li a:hover,
.footer-bottom-links a:hover,
.brand-gold,
.navbar-brand .brand-gold {
  color: #087c89;
}

.history-tab.active {
  background: #075463;
  border-color: #075463;
  color: #ffffff;
}

.history-quote {
  background: rgba(191, 234, 242, 0.5);
  border-left-color: #087c89;
}

.cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #eaf7fb 48%, #bfeaf2 100%);
}

.cta-card h2,
.cta-card p {
  color: #0b2f3a;
}

/* =========================================================================
   AMAUTA MED - Tema Celeste Salud
   Paleta base solicitada: #EAF7FB y #BFEAF2
   ========================================================================= */
:root {
  --bg-primary: #eaf7fb;
  --bg-secondary: #f7fcfe;
  --bg-card: #ffffff;
  --bg-card-hover: #dff3f8;
  --bg-elevated: #ffffff;

  --gold-primary: #087c89;
  --gold-light: #23a8b7;
  --gold-dark: #075463;
  --gold-gradient: linear-gradient(135deg, #087c89, #1aa6b6);

  --green-primary: #075463;
  --green-hover: #043b46;
  --green-glow: rgba(7, 84, 99, 0.18);

  --blue-accent: #1aa6b6;
  --blue-glow: rgba(31, 166, 183, 0.16);

  --text-primary: #0b2f3a;
  --text-secondary: #285868;
  --text-muted: #5f7f8a;

  --border-subtle: rgba(8, 124, 137, 0.14);
  --border-card: rgba(8, 84, 99, 0.16);

  --shadow-card: 0 8px 28px rgba(7, 84, 99, 0.08);
  --shadow-elevated: 0 16px 44px rgba(7, 84, 99, 0.14);
  --shadow-gold: 0 8px 26px rgba(8, 124, 137, 0.14);
}

body {
  background: linear-gradient(180deg, #eaf7fb 0%, #bfeaf2 46%, #f7fcfe 100%);
  color: var(--text-primary);
}

.navbar {
  background: rgba(234, 247, 251, 0.82);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.navbar.scrolled {
  background: rgba(234, 247, 251, 0.94);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 28px rgba(7, 84, 99, 0.08);
}

.navbar-brand,
.nav-links a,
.btn-text,
.nav-toggle span {
  color: var(--text-primary);
}

.btn-outline,
.btn-mode {
  background: rgba(255, 255, 255, 0.74);
}

.btn-primary,
.btn-chatbot,
.newsletter-form button {
  background: var(--green-primary);
  color: #ffffff;
}

.btn-primary:hover,
.btn-chatbot:hover,
.newsletter-form button:hover {
  background: var(--green-hover);
}

.btn-secondary,
#plan-medico .btn-secondary {
  background: #ffffff;
  border-color: rgba(7, 84, 99, 0.24);
  color: var(--text-primary);
}

.btn-secondary:hover,
#plan-medico .btn-secondary:hover {
  background: #eaf7fb;
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

.hero,
.features,
.history,
.testimonials,
.cta-section {
  background: transparent;
  color: var(--text-primary);
}

.hero {
  min-height: 94vh;
}

.hero::before {
  background: radial-gradient(circle, rgba(191, 234, 242, 0.78) 0%, transparent 68%);
}

.hero::after {
  background: radial-gradient(circle, rgba(8, 124, 137, 0.12) 0%, transparent 68%);
}

.hero-badge,
.section-badge {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(8, 124, 137, 0.24);
  color: var(--gold-dark);
}

.hero-badge .badge-dot,
.section-badge .dot {
  background: var(--gold-primary);
}

.hero-title,
.features .section-title,
.history .section-title,
.testimonials .section-title,
.section-title,
.history-text h2 {
  color: var(--text-primary);
}

.hero-description,
.features .section-subtitle,
.testimonials .section-subtitle,
.section-subtitle,
.history-text p,
.history-quote p {
  color: var(--text-secondary);
}

.hero-stat .stat-icon,
.feature-icon,
.plan-icon {
  background: #bfeaf2;
  color: #063f4b;
  border: 1px solid rgba(7, 84, 99, 0.14);
}

.stat-number {
  color: var(--text-primary);
}

.stat-label,
.hero-scroll-indicator,
.founder-title {
  color: var(--text-muted);
}

.scroll-mouse {
  border-color: var(--text-muted);
}

.hero-logo-ring {
  border-color: rgba(8, 124, 137, 0.28);
  animation: none;
}

.hero-logo-ring::before {
  border-color: rgba(8, 124, 137, 0.16);
}

.hero-logo-img,
.history-image-container img {
  filter: drop-shadow(0 12px 30px rgba(7, 84, 99, 0.18));
}

#planes {
  background: linear-gradient(180deg, #bfeaf2 0%, #eaf7fb 55%, #f7fcfe 100%);
  color: var(--text-primary);
}

#planes::before {
  color: rgba(7, 84, 99, 0.05);
}

#planes .section-title,
#planes .plan-head h3 {
  color: var(--text-primary);
  text-shadow: none;
}

#planes .section-subtitle,
#planes .plan-price,
#planes .plan-card p,
#planes .plan-features li {
  color: var(--text-secondary);
}

.plan-card,
#planes .plan-card,
.feature-card,
.testimonial-card,
.history-image-container,
.cta-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 84, 99, 0.14);
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
}

.plan-card:hover,
#planes .plan-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  border-color: rgba(8, 124, 137, 0.32);
  box-shadow: var(--shadow-elevated);
}

#planes .plan-card .btn-primary {
  background: var(--green-primary);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 84, 99, 0.18);
}

#planes .plan-card .btn-primary:hover {
  background: var(--green-hover);
}

#planes #plan-medico .btn-secondary {
  background: #ffffff;
  color: var(--text-primary);
  border-color: rgba(7, 84, 99, 0.22);
}

#planes #plan-medico .btn-secondary:hover {
  background: #eaf7fb;
  color: var(--gold-dark);
  border-color: var(--gold-primary);
}

.feature-card h3,
.feature-card p,
.feature-list li,
.testimonial-text,
.author-name,
.author-role,
.footer-column h4,
.footer-newsletter h4 {
  color: var(--text-primary);
}

.feature-card p,
.feature-list li,
.testimonial-text,
.author-role {
  color: var(--text-secondary);
}

.feature-list li .check,
.testimonial-stars,
.testimonial-text::before {
  color: var(--gold-primary);
}

.history-tab {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(7, 84, 99, 0.18);
  color: var(--text-secondary);
}

.history-tab.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #ffffff;
}

.history-quote {
  background: rgba(191, 234, 242, 0.48);
  border-left-color: var(--gold-primary);
}

.cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #eaf7fb 48%, #bfeaf2 100%);
}

.cta-card h2,
.cta-card p {
  color: var(--text-primary);
}

.cta-button {
  background: var(--green-primary);
  color: #ffffff;
}

.cta-button:hover {
  background: var(--green-hover);
  color: #ffffff;
}

.footer {
  background: rgba(234, 247, 251, 0.94);
  border-top: 1px solid var(--border-subtle);
}

.footer-brand p,
.footer-column ul li a,
.footer-newsletter p,
.footer-bottom p,
.footer-bottom-links a {
  color: var(--text-secondary);
}

.footer-social-link {
  background: #ffffff;
  border-color: rgba(7, 84, 99, 0.18);
  color: var(--gold-dark);
}

.newsletter-form input {
  background: #ffffff;
  border-color: rgba(7, 84, 99, 0.18);
}

@media (max-width: 768px) {
  .nav-links.mobile-open,
  .nav-actions.mobile-open {
    background: rgba(234, 247, 251, 0.98);
  }
}

/* ---------- Tema celeste salud: overrides finales ---------- */
body {
  background: linear-gradient(180deg, #eaf7fb 0%, #bfeaf2 46%, #f7fcfe 100%);
  color: #0b2f3a;
}

.navbar,
.navbar.scrolled,
.footer {
  background: rgba(234, 247, 251, 0.94);
  border-color: rgba(8, 124, 137, 0.14);
}

.hero,
.plans,
#planes,
.features,
.history,
.testimonials,
.cta-section {
  background: transparent;
  color: #0b2f3a;
}

#planes {
  background: linear-gradient(180deg, #bfeaf2 0%, #eaf7fb 58%, #f7fcfe 100%);
}

.hero-title,
.section-title,
#planes .section-title,
.features .section-title,
.history .section-title,
.testimonials .section-title,
.history-text h2,
#planes .plan-head h3,
.feature-card h3,
.author-name,
.footer-column h4,
.footer-newsletter h4 {
  color: #0b2f3a;
}

.hero-description,
.section-subtitle,
#planes .section-subtitle,
.features .section-subtitle,
.testimonials .section-subtitle,
.history-text p,
.history-quote p,
#planes .plan-price,
#planes .plan-card p,
#planes .plan-features li,
.feature-card p,
.feature-list li,
.testimonial-text,
.author-role,
.footer-brand p,
.footer-column ul li a,
.footer-newsletter p,
.footer-bottom p,
.footer-bottom-links a {
  color: #285868;
}

.nav-links a,
.btn-text,
.stat-number,
.founder-name,
.plan-head h3,
.plan-price,
.plan-card p,
.plan-features li {
  color: #0b2f3a;
}

.nav-toggle span {
  background: #0b2f3a;
}

.hero-badge,
.section-badge,
.history-tab,
.btn-outline,
.btn-mode {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(8, 124, 137, 0.24);
  color: #075463;
}

.hero-badge .badge-dot,
.section-badge .dot,
.scroll-mouse::after {
  background: #087c89;
}

.btn-primary,
.btn-chatbot,
.newsletter-form button,
#planes .plan-card .btn-primary,
.cta-button {
  background: #075463;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 84, 99, 0.18);
}

.btn-primary:hover,
.btn-chatbot:hover,
.newsletter-form button:hover,
#planes .plan-card .btn-primary:hover,
.cta-button:hover {
  background: #043b46;
  color: #ffffff;
}

.btn-secondary,
#plan-medico .btn-secondary,
#planes #plan-medico .btn-secondary {
  background: #ffffff;
  border-color: rgba(7, 84, 99, 0.24);
  color: #0b2f3a;
}

.btn-secondary:hover,
#plan-medico .btn-secondary:hover,
#planes #plan-medico .btn-secondary:hover {
  background: #eaf7fb;
  border-color: #087c89;
  color: #075463;
}

.hero-stat .stat-icon,
.feature-icon,
.plan-icon,
.author-avatar,
.founder-avatar {
  background: linear-gradient(135deg, #bfeaf2, #eaf7fb);
  color: #063f4b;
  border: 1px solid rgba(7, 84, 99, 0.14);
}

.plan-card,
#planes .plan-card,
.feature-card,
.testimonial-card,
.history-image-container,
.cta-card,
.hero-founder-badge,
.footer-social-link {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(7, 84, 99, 0.14);
  color: #0b2f3a;
  box-shadow: 0 8px 28px rgba(7, 84, 99, 0.08);
}

.plan-card:hover,
#planes .plan-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  border-color: rgba(8, 124, 137, 0.32);
  box-shadow: 0 16px 44px rgba(7, 84, 99, 0.14);
}

.feature-card::before {
  background: linear-gradient(135deg, #087c89, #1aa6b6);
}

.feature-list li .check,
.testimonial-stars,
.testimonial-text::before,
.footer-column ul li a:hover,
.footer-bottom-links a:hover,
.brand-gold,
.navbar-brand .brand-gold {
  color: #087c89;
}

.history-tab.active {
  background: #075463;
  border-color: #075463;
  color: #ffffff;
}

.history-quote {
  background: rgba(191, 234, 242, 0.5);
  border-left-color: #087c89;
}

.cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #eaf7fb 48%, #bfeaf2 100%);
}

.cta-card h2,
.cta-card p {
  color: #0b2f3a;
}

@media (max-width: 768px) {
  .nav-links.mobile-open,
  .nav-actions.mobile-open {
    background: rgba(234, 247, 251, 0.98);
  }
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #071428 0%, #081426 30%, #0a1a2e 60%, #051118 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(6, 182, 212, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge .dot {
  width: 6px;
  height: 6px;
  background: rgba(6, 182, 212, 0.9);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ---------- Keyframe Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes glow-ring {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2), 0 0 40px rgba(201, 168, 76, 0.1);
  }

  50% {
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.35), 0 0 60px rgba(201, 168, 76, 0.15);
  }
}

@keyframes scroll-indicator {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  50% {
    top: 18px;
    opacity: 0.3;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 17, 24, 0.85);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-bottom: 1px solid rgba(2, 132, 199, 0.1);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(2, 132, 199, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.navbar-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.navbar-brand .brand-gold {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-mode {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.btn-mode:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-chatbot {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--green-primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  transition: var(--transition-fast);
  box-shadow: 0 2px 12px var(--green-glow);
}

.btn-chatbot:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--green-glow);
}

.btn-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 12px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-text:hover {
  color: var(--text-primary);
}

.btn-outline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: transparent;
  color: #e6f6ff;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
  color: #f8fcff;
}

.hero-title .italic-accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(230,246,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--green-primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
  box-shadow: 0 4px 16px var(--green-glow);
}

.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--green-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.05);
}

.btn-icon {
  font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat .stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  font-size: 0.9rem;
}

.stat-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.hero-logo-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
}

.hero-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.15);
  animation: glow-ring 3s ease-in-out infinite;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(201, 168, 76, 0.2));
}

.hero-founder-badge {
  position: absolute;
  top: 10px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  animation: fadeInRight 0.6s ease-out 0.6s backwards;
}

.founder-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.founder-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}

.founder-title {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 3px;
  animation: scroll-indicator 2s ease-in-out infinite;
}

/* ========== PLANS (sección personalizada para diseño llamativo) ==========
   Estilos específicos para la sección "Planes". Mantiene el contenido
   HTML tal como está; solo ajusta la presentación para que coincida con
   el mockup proporcionado (tarjeta principal destacada, botón relleno
   azul y tarjeta secundaria más neutra).
======================================================================= */
.plans {
  padding: 120px 0 80px;
  position: relative;
}

.plans .container {
  max-width: 920px;
  padding: 0 24px;
}

.plans .section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.plans .section-subtitle {
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.plans-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 18px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.plan-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(14,165,233,0.08);
  box-shadow: 0 6px 18px rgba(14,165,233,0.06);
}

.plan-icon {
  font-size: 1.6rem;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(14,165,233,0.06);
}

.plan-head h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0;
}

.plan-price {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 700;
}

.plan-card p {
  color: var(--text-secondary);
  margin: 6px 0 8px 0;
  max-width: 720px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0 14px 0;
  color: var(--text-primary);
}

.plan-features li {
  font-size: 0.98rem;
  color: var(--text-secondary);
}

/* Botón principal (resaltado) */
.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.plan-card .btn-primary {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(2,132,199,0.12);
}

.plan-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.14);
}

/* Estilo específico para la tarjeta secundaria (más neutra) */
#plan-medico .btn-secondary {
  background: #f7fafc;
  border: 1px solid rgba(15,23,42,0.04);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
}

#plan-medico .btn-secondary:hover {
  background: rgba(14,165,233,0.04);
  color: var(--gold-primary);
  border-color: rgba(14,165,233,0.12);
}

/* Ajustes responsivos */
@media (min-width: 900px) {
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
  }

  .plan-card {
    width: 100%;
  }
}

/* ========== GLASS / NIGHT THEME FOR PLANS ========== */
/* Usa el id #planes para aplicar un estilo contrastado sin tocar HTML */
#planes {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #adf3f7 0%, #9cb9e5 40%, rgba(6,10,23,0.02) 100%);
  color: #e6f6ff;
  overflow: visible;
}

#planes::before {
  content: 'AMAUTAMED';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  font-size: 9.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: 0.12em;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

#planes .container {
  position: relative;
  z-index: 2;
}

/* Ajustes tipográficos en modo oscuro */
#planes .section-title {
  color: #f8fcff;
}

#planes .section-subtitle {
  color: rgba(230,246,255,0.85);
}

/* Glassmorphism cards */
#planes .plan-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 30px rgba(2, 132, 199, 0.06), inset 0 1px 0 rgba(255,255,255,0.02);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  color: #e7f8ff;
}

#planes .plan-card:hover {
  box-shadow: 0 18px 60px rgba(3, 105, 161, 0.18), 0 6px 30px rgba(2,132,199,0.06);
  transform: translateY(-10px);
}

#planes .plan-head h3 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(3,105,161,0.08);
}

#planes .plan-price {
  color: rgba(230,246,255,0.9);
}

#planes .plan-card p,
#planes .plan-features li {
  color: rgba(230,246,255,0.85);
}

/* Neon / gradient button for primary */
#planes .plan-card .btn-primary {
  background: linear-gradient(90deg, #06b6d4 0%, #0284c7 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 30px rgba(2,132,199,0.18), 0 2px 8px rgba(0,0,0,0.2);
}

#planes .plan-card .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 26px 70px rgba(2,132,199,0.24), 0 6px 20px rgba(2,132,199,0.12);
}

/* Subtle translucent button for secondary */
#planes #plan-medico .btn-secondary {
  background: rgba(255,255,255,0.04);
  color: #e6f6ff;
  border: 1px solid rgba(255,255,255,0.06);
}

#planes #plan-medico .btn-secondary:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.14);
  color: #ffffff;
}

/* Make sure the watermark scales on small screens */
@media (max-width: 900px) {
  #planes::before {
    font-size: 5.2rem;
    top: 6%;
  }

  #planes .plan-card {
    width: 100%;
  }
}

/* ========== FEATURES ========== */
.features {
  padding: var(--section-padding);
  position: relative;
  background: transparent;
}

.features .container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.features .section-title {
  color: #f8fcff;
}

.features .section-subtitle {
  color: rgba(230,246,255,0.85);
}

.features .section-subtitle {
  margin: 0 auto 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 8px 30px rgba(2, 132, 199, 0.06), inset 0 1px 0 rgba(255,255,255,0.02);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-color: rgba(2, 132, 199, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 18px 60px rgba(3, 105, 161, 0.18), 0 6px 30px rgba(2,132,199,0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 1.4rem;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: rgba(201, 168, 76, 0.18);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(230,246,255,0.85);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(230,246,255,0.85);
}

.feature-list li .check {
  color: var(--green-primary);
  font-size: 0.9rem;
}

/* ========== HISTORY ========== */
.history {
  padding: var(--section-padding);
  background: transparent;
  position: relative;
}

.history::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-card), transparent);
}

.history .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.history .section-title {
  color: #f8fcff;
}

.history-text p {
  color: rgba(230,246,255,0.85);
}

.history-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.history-tab {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.history-tab.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #ffffff;
  font-weight: 600;
}

.history-tab:hover:not(.active) {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.history-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.history-text h2 .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.history-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.history-quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(201, 168, 76, 0.06);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.history-quote p {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.history-image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.history-image-container img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(201, 168, 76, 0.15));
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: var(--section-padding);
  position: relative;
  background: transparent;
}

.testimonials .section-title {
  color: #f8fcff;
}

.testimonials .section-subtitle {
  color: rgba(230,246,255,0.85);
}

.testimonials .container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonials .section-subtitle {
  margin: 0 auto 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 8px 30px rgba(2, 132, 199, 0.06), inset 0 1px 0 rgba(255,255,255,0.02);
}

.testimonial-card:hover {
  border-color: rgba(2, 132, 199, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 18px 60px rgba(3, 105, 161, 0.18), 0 6px 30px rgba(2,132,199,0.06);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(230,246,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--gold-primary);
  font-family: 'Playfair Display', serif;
  line-height: 0;
  vertical-align: -0.4rem;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.author-role {
  font-size: 0.75rem;
  color: rgba(230,246,255,0.65);
}

/* ========== CTA ========== */
.cta-section {
  padding: 80px 0 100px;
  background: transparent;
}

.cta-card {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(13, 148, 136, 0.1));
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 8px 40px rgba(2, 132, 199, 0.1), inset 0 1px 0 rgba(255,255,255,0.04);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.cta-card h2 .highlight {
  background: linear-gradient(135deg, #fef08a, #fde047, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #ffffff;
  color: #0f766e;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.cta-button:hover {
  background: #f0fdfa;
  color: #0d9488;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ========== FOOTER ========== */
.footer {
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(5, 17, 24, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(230,246,255,0.7);
  line-height: 1.65;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  transform: translateY(-4px) scale(1.1);
  color: #fff;
}

/* Facebook */
.social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Instagram */
.social-instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #e6683c;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* WhatsApp */
.social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-newsletter h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-newsletter p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--gold-primary);
}

.newsletter-form button {
  padding: 10px 16px;
  background: var(--green-primary);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--green-hover);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-logo-wrapper {
    width: 280px;
    height: 280px;
  }

  .hero-description {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-founder-badge {
    right: -10px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .history .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

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


  @media (max-width: 768px) {
    :root {
      --section-padding: 70px 0;
    }

    .nav-links,
    .nav-actions {
      display: none;
    }

    .nav-toggle {
      display: flex;
    }

    .nav-links.mobile-open,
    .nav-actions.mobile-open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      padding: 24px;
      border-bottom: 1px solid var(--border-subtle);
      gap: 16px;
    }

    .hero-title {
      font-size: 2.4rem;
    }

    .hero-logo-wrapper {
      width: 220px;
      height: 220px;
    }

    .hero-stats {
      flex-direction: column;
      gap: 16px;
    }

    .features-grid {
      grid-template-columns: 1fr;
    }

    .testimonials-grid {
      grid-template-columns: 1fr;
    }

    .cta-card {
      padding: 48px 24px;
    }

    .cta-card h2 {
      font-size: 1.8rem;
    }

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

    .footer-bottom {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }

    .section-title {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 1.9rem;
    }

    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }

    .btn-primary,
    .btn-secondary {
      width: 100%;
      justify-content: center;
    }

    .hero-founder-badge {
      display: none;
    }

    .history-tabs {
      flex-wrap: wrap;
    }
  }
}

/* ---------- Tema celeste salud: overrides finales ---------- */
body {
  background: linear-gradient(180deg, #eaf7fb 0%, #bfeaf2 46%, #f7fcfe 100%);
  color: #0b2f3a;
}

.navbar,
.navbar.scrolled,
.footer {
  background: rgba(234, 247, 251, 0.94);
  border-color: rgba(8, 124, 137, 0.14);
}

.hero,
.plans,
#planes,
.features,
.history,
.testimonials,
.cta-section {
  background: transparent;
  color: #0b2f3a;
}

#planes {
  background: linear-gradient(180deg, #bfeaf2 0%, #eaf7fb 58%, #f7fcfe 100%);
}

.hero-title,
.section-title,
#planes .section-title,
.features .section-title,
.history .section-title,
.testimonials .section-title,
.history-text h2,
#planes .plan-head h3,
.feature-card h3,
.author-name,
.footer-column h4,
.footer-newsletter h4 {
  color: #0b2f3a;
}

.hero-description,
.section-subtitle,
#planes .section-subtitle,
.features .section-subtitle,
.testimonials .section-subtitle,
.history-text p,
.history-quote p,
#planes .plan-price,
#planes .plan-card p,
#planes .plan-features li,
.feature-card p,
.feature-list li,
.testimonial-text,
.author-role,
.footer-brand p,
.footer-column ul li a,
.footer-newsletter p,
.footer-bottom p,
.footer-bottom-links a {
  color: #285868;
}

.nav-links a,
.btn-text,
.stat-number,
.founder-name,
.plan-head h3,
.plan-price,
.plan-card p,
.plan-features li {
  color: #0b2f3a;
}

.nav-toggle span {
  background: #0b2f3a;
}

.hero-badge,
.section-badge,
.history-tab,
.btn-outline,
.btn-mode {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(8, 124, 137, 0.24);
  color: #075463;
}

.hero-badge .badge-dot,
.section-badge .dot,
.scroll-mouse::after {
  background: #087c89;
}

.btn-primary,
.btn-chatbot,
.newsletter-form button,
#planes .plan-card .btn-primary,
.cta-button {
  background: #075463;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 84, 99, 0.18);
}

.btn-primary:hover,
.btn-chatbot:hover,
.newsletter-form button:hover,
#planes .plan-card .btn-primary:hover,
.cta-button:hover {
  background: #043b46;
  color: #ffffff;
}

.btn-secondary,
#plan-medico .btn-secondary,
#planes #plan-medico .btn-secondary {
  background: #ffffff;
  border-color: rgba(7, 84, 99, 0.24);
  color: #0b2f3a;
}

.btn-secondary:hover,
#plan-medico .btn-secondary:hover,
#planes #plan-medico .btn-secondary:hover {
  background: #eaf7fb;
  border-color: #087c89;
  color: #075463;
}

.hero-stat .stat-icon,
.feature-icon,
.plan-icon,
.author-avatar,
.founder-avatar {
  background: linear-gradient(135deg, #bfeaf2, #eaf7fb);
  color: #063f4b;
  border: 1px solid rgba(7, 84, 99, 0.14);
}

.plan-card,
#planes .plan-card,
.feature-card,
.testimonial-card,
.history-image-container,
.cta-card,
.hero-founder-badge,
.footer-social-link {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(7, 84, 99, 0.14);
  color: #0b2f3a;
  box-shadow: 0 8px 28px rgba(7, 84, 99, 0.08);
}

.plan-card:hover,
#planes .plan-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  border-color: rgba(8, 124, 137, 0.32);
  box-shadow: 0 16px 44px rgba(7, 84, 99, 0.14);
}

.feature-card::before {
  background: linear-gradient(135deg, #087c89, #1aa6b6);
}

.feature-list li .check,
.testimonial-stars,
.testimonial-text::before,
.footer-column ul li a:hover,
.footer-bottom-links a:hover,
.brand-gold,
.navbar-brand .brand-gold {
  color: #087c89;
}

.history-tab.active {
  background: #075463;
  border-color: #075463;
  color: #ffffff;
}

.history-quote {
  background: rgba(191, 234, 242, 0.5);
  border-left-color: #087c89;
}

.cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #eaf7fb 48%, #bfeaf2 100%);
}

.cta-card h2,
.cta-card p {
  color: #0b2f3a;
}

@media (max-width: 768px) {
  .nav-links.mobile-open,
  .nav-actions.mobile-open {
    background: rgba(234, 247, 251, 0.98);
  }
}

/* TikTok Social Link Hover */
.social-tiktok:hover {
  background: #000000;
  border-color: #000000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  color: #00f2fe;
}

/* Terms Modal Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 92%;
  max-width: 600px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  overflow: hidden;
  color: #e2e8f0;
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}
.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  margin: 0;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
}
.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #fff;
}
.modal-body {
  padding: 24px;
  color: rgba(255, 255, 255, 0.85);
  max-height: 70vh;
  overflow-y: auto;
}

/* Plan card recommended badge & custom outline */
#plan-medico {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.08) !important;
}
.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, #d4af37, #f3e5ab);
  color: #0f172a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  z-index: 10;
}

/* Collaborators styles */
.collaborators {
  padding: 100px 0 80px;
  background: transparent;
  position: relative;
}
.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.collaborator-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(8px);
}
.collaborator-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.15);
}
.collaborator-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.05);
}
.collaborator-card h4 {
  margin: 0 0 6px 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.collaborator-card p {
  margin: 0;
  color: rgba(230, 246, 255, 0.7);
  font-size: 0.82rem;
}

/* =========================================================================
   NUEVOS COMPONENTES: HERO VIDEO, DESLINDE, SEGMENTACIÓN E IMPACTO
   ========================================================================= */

/* Logo y Nombre en Hero */
.hero-logo-small {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-logo-small-img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
}
.hero-brand-name {
  font-family: var(--font-outfit);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.hero-brand-name .gold {
  color: var(--gold-color);
}

/* Hero Typography Enhancement */
@media (min-width: 900px) {
  .hero-title {
    font-size: 3.8rem !important; /* Increased font size for higher visual hierarchy */
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
}

/* Hero Video Container */
.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hero-video-container:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 168, 76, 0.2);
}
.hero-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Disclaimer Banner */
.disclaimer-banner {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.06) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(201, 168, 76, 0.06) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 18px 0;
  position: relative;
  z-index: 10;
}
.disclaimer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.disclaimer-icon {
  color: var(--gold-color);
  font-size: 28px;
  animation: pulse-dot 2.5s infinite;
}
.disclaimer-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(230, 246, 255, 0.9);
  font-weight: 500;
  text-align: center;
}

/* User Segmentation Section */
.segmentation {
  padding: 100px 0;
  position: relative;
}
.segmentation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}
@media (min-width: 900px) {
  .segmentation-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.segment-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.segment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}
.student-theme:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.08);
}
.doctor-theme:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.08);
}
.segment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 18px;
}
.segment-icon {
  font-size: 2.2rem;
}
.segment-card h3 {
  margin: 0;
  font-family: var(--font-outfit);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.student-theme h3 {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.doctor-theme h3 {
  background: linear-gradient(90deg, #34d399, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.segment-desc {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(230, 246, 255, 0.8);
  margin-bottom: 25px;
}
.segment-subtitle {
  font-family: var(--font-outfit);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 20px 0 12px 0;
}
.segment-list, .segment-resources {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.segment-list li, .segment-resources li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(230, 246, 255, 0.85);
}
.segment-list li .check {
  color: var(--green-primary);
  font-weight: bold;
}
.student-theme .segment-list li .check {
  color: #60a5fa;
}
.segment-resources li .bullet {
  color: var(--gold-color);
}
.btn-segment {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
  text-decoration: none;
}
.student-theme .btn-segment {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.student-theme .btn-segment:hover {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}
.doctor-theme .btn-segment {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.doctor-theme .btn-segment:hover {
  background: #10b981;
  color: #fff;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Social Impact Section */
.social-impact {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
}
.social-impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
}
@media (min-width: 600px) {
  .social-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .social-impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.impact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.impact-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-5px);
}
.impact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.2));
}
.impact-card h4 {
  font-family: var(--font-outfit);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}
.impact-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(230, 246, 255, 0.75);
}

/* Collaborators Program Benefits */
.collaborators-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 600px) {
  .collaborators-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .collaborators-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.benefit-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(15, 23, 42, 0.7);
}
.benefit-card h5 {
  font-family: var(--font-outfit);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-color);
  margin: 0 0 10px 0;
}
.benefit-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(230, 246, 255, 0.75);
}

/* Divider Glow */
.section-divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
  width: 100%;
}

