/* ============================================
   DEMO CLÍNICA / DOCTORES - Estilos públicos
   ============================================ */

:root {
    --c-primary: #0F4C81;
    --c-primary-dark: #0A3460;
    --c-primary-light: #E8F0F9;
    --c-accent: #00C9A7;
    --c-accent-dark: #009E83;
    --c-accent-light: #E0FAF4;
    --c-warning: #F59E0B;
    --c-danger: #DC2626;
    --c-success: #16A34A;
    --c-bg: #F7FAFC;
    --c-surface: #FFFFFF;
    --c-text: #1A2942;
    --c-text-soft: #5A6B80;
    --c-text-muted: #8B9AAE;
    --c-border: #E2E8F0;
    --c-border-strong: #CBD5E0;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 28px;
    --r-full: 999px;
    --shadow-sm: 0 1px 3px rgba(15, 76, 129, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 76, 129, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 76, 129, 0.12);
    --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--c-text);
    background: var(--c-surface);
    line-height: 1.55;
    font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--c-primary);
}

/* ===== NAVBAR ===== */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--c-border);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary) 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
    flex-shrink: 0;
}
.logo-name {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--c-primary);
}
.logo-tagline {
    display: block;
    font-size: 10.5px;
    color: var(--c-text-muted);
    margin-top: -2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    transition: color var(--t);
    position: relative;
    padding: 6px 0;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--c-accent-dark);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--c-accent);
    border-radius: 2px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-wa-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: #25D366;
    border: 1.5px solid #DCFCE7;
    background: #F0FDF4;
    border-radius: var(--r-full);
    font-size: 12.5px;
    font-weight: 700;
    transition: all var(--t);
}
.btn-wa-nav:hover { background: #25D366; color: white; border-color: #25D366; }
.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--c-primary);
    color: white;
    border-radius: var(--r-full);
    font-size: 13.5px;
    font-weight: 700;
    transition: all var(--t);
    box-shadow: 0 4px 14px rgba(15, 76, 129, 0.25);
}
.btn-cta-nav:hover {
    background: var(--c-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 158, 131, 0.3);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--c-primary);
    cursor: pointer;
    padding: 6px;
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 18px 24px;
        border-bottom: 1px solid var(--c-border);
        gap: 16px;
    }
    .nav-toggle { display: inline-flex; }
    .btn-wa-nav { display: none; }
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 100px;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 201, 167, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(15, 76, 129, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg) 100%);
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--c-accent-dark);
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 201, 167, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(0, 201, 167, 0); }
}
.hero h1 {
    font-size: clamp(38px, 5.5vw, 60px);
    margin-bottom: 22px;
    color: var(--c-primary);
}
.hero h1 .accent {
    background: linear-gradient(120deg, var(--c-accent-dark) 0%, var(--c-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-lead {
    font-size: 18px;
    color: var(--c-text-soft);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 540px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 14.5px;
    transition: all var(--t);
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-primary {
    background: var(--c-primary);
    color: white;
    box-shadow: 0 8px 22px rgba(15, 76, 129, 0.25);
}
.btn-primary:hover {
    background: var(--c-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 158, 131, 0.3);
}
.btn-outline {
    background: white;
    color: var(--c-primary);
    border: 1.5px solid var(--c-border-strong);
}
.btn-outline:hover { border-color: var(--c-primary); }
.btn-accent {
    background: var(--c-accent);
    color: white;
    box-shadow: 0 8px 22px rgba(0, 201, 167, 0.30);
}
.btn-accent:hover { background: var(--c-accent-dark); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 15.5px; }

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid var(--c-border);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-soft);
}
.trust-item svg { color: var(--c-success); }

/* Hero visual: dashboard mockup */
.hero-visual {
    position: relative;
}
.dashboard-mock {
    background: white;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform var(--t);
}
.dashboard-mock:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0deg); }
.dash-bar {
    background: var(--c-primary);
    color: white;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.dash-bar .dash-dot:nth-child(1) { background: #FF6058; }
.dash-bar .dash-dot:nth-child(2) { background: #FFBE2E; }
.dash-bar .dash-dot:nth-child(3) { background: #28CA42; }
.dash-bar-title { margin-left: 10px; font-size: 12px; opacity: 0.7; }
.dash-body { padding: 24px; }
.dash-cita {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--c-bg);
    border-radius: var(--r-md);
    margin-bottom: 12px;
    border-left: 3px solid var(--c-accent);
}
.dash-cita.is-pending { border-color: var(--c-warning); }
.dash-cita-time {
    background: white;
    padding: 8px 10px;
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
    border: 1px solid var(--c-border);
}
.dash-cita-time strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--c-primary);
}
.dash-cita-time span { font-size: 10px; color: var(--c-text-muted); }
.dash-cita-info { flex: 1; min-width: 0; }
.dash-cita-info strong { display: block; font-size: 13px; color: var(--c-text); }
.dash-cita-info span { font-size: 11.5px; color: var(--c-text-soft); }
.dash-cita-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: var(--r-full);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--c-accent-light);
    color: var(--c-accent-dark);
}
.dash-cita.is-pending .dash-cita-badge {
    background: #FEF3C7;
    color: #92400E;
}

/* ===== SECTION ===== */
.section { padding: 90px 0; }
.section-bg { background: var(--c-bg); }
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-head .eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--c-accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.section-head h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--c-primary);
    margin-bottom: 14px;
}
.section-head p {
    font-size: 17px;
    color: var(--c-text-soft);
    line-height: 1.6;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.feature-card {
    background: white;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: all var(--t);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-accent);
}
.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--c-accent-light);
    color: var(--c-accent-dark);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--c-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SERVICIOS / DOCTORES GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.service-card, .doctor-card {
    background: white;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--t);
    display: flex;
    flex-direction: column;
}
.service-card:hover, .doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-accent);
}
.service-card-head {
    padding: 22px 24px 16px;
    border-bottom: 1px solid var(--c-border);
    background: linear-gradient(135deg, var(--c-primary-light) 0%, white 100%);
}
.service-cat {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    color: var(--c-accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    background: var(--c-accent-light);
    border-radius: var(--r-full);
    margin-bottom: 10px;
}
.service-card-head h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--c-primary);
}
.service-meta {
    display: flex;
    gap: 16px;
    font-size: 12.5px;
    color: var(--c-text-muted);
    margin-top: 6px;
}
.service-meta strong { color: var(--c-text); font-weight: 700; }
.service-card-body {
    padding: 18px 24px;
    flex: 1;
}
.service-card-body p {
    font-size: 14px;
    color: var(--c-text-soft);
    line-height: 1.55;
}
.service-card-foot {
    padding: 14px 24px 18px;
    background: var(--c-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--c-border);
}
.service-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--c-primary);
}
.service-price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--c-text-muted);
}

/* Doctor card */
.doctor-card { text-align: center; }
.doctor-avatar {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--c-primary-light) 0%, var(--c-accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.doctor-avatar .initials {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: var(--c-primary);
}
.doctor-body {
    padding: 20px 22px 22px;
}
.doctor-body h3 {
    font-size: 17px;
    margin-bottom: 4px;
}
.doctor-spec {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--c-accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.doctor-bio {
    font-size: 13px;
    color: var(--c-text-soft);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.doctor-colegiado {
    display: inline-block;
    font-size: 11px;
    padding: 3px 9px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

/* ===== AGENDAR (form) ===== */
.agendar-wrap {
    background: var(--c-bg);
    min-height: calc(100vh - 80px);
    padding: 60px 0;
}
.agendar-card {
    max-width: 740px;
    margin: 0 auto;
    background: white;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.agendar-head {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent-dark) 100%);
    color: white;
    padding: 32px 36px;
}
.agendar-head h1 {
    color: white;
    font-size: 26px;
    margin-bottom: 6px;
}
.agendar-head p { opacity: 0.9; font-size: 15px; }
.agendar-steps {
    display: flex;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
}
.agendar-step {
    flex: 1;
    padding: 14px 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted);
    border-right: 1px solid var(--c-border);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.agendar-step:last-child { border-right: none; }
.agendar-step.is-active { background: white; color: var(--c-primary); }
.agendar-step .num {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    background: var(--c-border);
    color: white;
    margin-right: 6px;
    font-size: 11px;
}
.agendar-step.is-active .num { background: var(--c-accent); }
.agendar-body { padding: 32px 36px; }

@media (max-width: 600px) {
    .agendar-head { padding: 24px; }
    .agendar-body { padding: 24px; }
    .agendar-step { font-size: 10px; padding: 12px 6px; }
    .agendar-step .num { margin-right: 0; display: block; margin: 0 auto 4px; }
}

.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 13px 15px;
    font-family: inherit;
    font-size: 14.5px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    background: white;
    transition: all var(--t);
}
.form-control:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(0, 201, 167, 0.1);
}
.form-help {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 6px;
}

.req { color: var(--c-danger); }

/* Picker de servicios / doctores en agendar */
.picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.picker-item {
    cursor: pointer;
    padding: 16px;
    background: white;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    transition: all var(--t);
    text-align: left;
    font-family: inherit;
    position: relative;
}
.picker-item:hover { border-color: var(--c-accent); transform: translateY(-1px); }
.picker-item.is-active {
    border-color: var(--c-accent);
    background: var(--c-accent-light);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.1);
}
.picker-item strong { display: block; font-size: 14px; color: var(--c-primary); margin-bottom: 3px; }
.picker-item span { font-size: 12px; color: var(--c-text-soft); }
.picker-item .price {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--c-accent-dark);
    font-size: 16px;
}

/* Slots de horario */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
    padding: 4px;
}
.slot {
    padding: 11px;
    background: white;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all var(--t);
    text-align: center;
}
.slot:hover { border-color: var(--c-accent); }
.slot.is-active { background: var(--c-accent); color: white; border-color: var(--c-accent); }
.slots-empty {
    text-align: center;
    padding: 30px;
    color: var(--c-text-muted);
    font-size: 14px;
    grid-column: 1 / -1;
}

/* ===== CITA CONFIRMADA ===== */
.confirmada-card {
    max-width: 580px;
    margin: 60px auto;
    background: white;
    border-radius: var(--r-xl);
    padding: 50px 36px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.confirmada-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 40px rgba(0, 201, 167, 0.35);
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.confirmada-num {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: var(--c-primary-light);
    color: var(--c-primary);
    border-radius: var(--r-full);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
}
.confirmada-card h1 {
    font-size: 28px;
    margin-bottom: 12px;
}
.confirmada-summary {
    margin: 30px 0;
    text-align: left;
    background: var(--c-bg);
    border-radius: var(--r-md);
    padding: 22px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--c-border);
}
.summary-row:last-child { border: none; }
.summary-row span { color: var(--c-text-soft); }
.summary-row strong { color: var(--c-primary); font-weight: 700; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--c-primary);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .logo-name { color: white; }
.footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.78; margin-top: 12px; max-width: 320px; }
.site-footer h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 5px 0; font-size: 13.5px; opacity: 0.78; }
.site-footer ul li a:hover { color: var(--c-accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    opacity: 0.7;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-merka { color: var(--c-accent) !important; font-weight: 600; }
.footer-merka:hover { color: white !important; }

/* WhatsApp floating */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    z-index: 50;
    transition: transform var(--t);
}
.wa-float:hover { transform: scale(1.08) rotate(-5deg); }

/* Helper alerts */
.alert {
    padding: 14px 16px;
    border-radius: var(--r-md);
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.alert-error { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.alert-info { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }
.alert-success { background: var(--c-accent-light); color: #047857; border: 1px solid #A7F3D0; }
