/* ─── Variables de marca ──────────────────────────────────── */
:root {
    --brand-primary:   #1e40af; /* azul JDM */
    --brand-secondary: #f59e0b; /* ámbar acento */
    --brand-dark:      #1e293b;
    --brand-light:     #f8fafc;
}

/* ─── Focus visible (accesibilidad) ──────────────────────── */
:focus-visible {
    outline: 3px solid var(--brand-secondary);
    outline-offset: 2px;
}

/* ─── Scroll suave ────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ─── Transición de vistas ────────────────────────────────── */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.2s ease;
}
.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

/* ─── Badge estado ────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.55rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-blue   { background-color: #dbeafe; color: #1e40af; }
.badge-green  { background-color: #dcfce7; color: #166534; }
.badge-yellow { background-color: #fef9c3; color: #854d0e; }
.badge-gray   { background-color: #f3f4f6; color: #374151; }

/* ─── Tarjetas de plan (página Planes) ────────────────────── */
.plan-card {
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 rgba(30,64,175,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px 0 rgba(30,64,175,0.14);
}
.plan-card.popular {
    border: 2px solid var(--brand-secondary);
}

/* ─── Toggle servicio ─────────────────────────────────────── */
.servicio-toggle {
    cursor: pointer;
    transition: background-color 0.15s ease;
}
.servicio-toggle.included  { background-color: #dcfce7; }
.servicio-toggle.excluded  { background-color: #f3f4f6; }

/* ─── Navbar ──────────────────────────────────────────────── */
.nav-link {
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.15s, background-color 0.15s;
}
.nav-link:hover,
.nav-link.active {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
}

/* ─── Tabla responsive ────────────────────────────────────── */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
