/* ===== COTIZADOR WEB — Ciberecus Systems ===== */
.cotizador-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
}
.cotizador-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.cotizador-step {
    display: none;
    animation: fadeIn 0.4s ease;
}
.cotizador-step.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.modulo-card {
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
}
.modulo-card:hover {
    border-color: #0d6efd;
    background: #f8f9ff;
}
.modulo-card.selected {
    border-color: #0d6efd;
    background: #e7f1ff;
}
.modulo-card input[type="checkbox"] {
    display: none;
}
.modulo-precio {
    font-weight: 700;
    color: #0d6efd;
    font-size: 1.1rem;
}
.resumen-box {
    background: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.precio-final {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d6efd;
}
.tiempo-estimado {
    font-size: 1.2rem;
    color: #495057;
}
.cupon-box {
    border: 2px dashed #adb5bd;
    border-radius: 0.5rem;
    padding: 1rem;
    background: #fff;
}
.badge-tiempo {
    background: #e9ecef;
    color: #495057;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}
.progress-bar-coti {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}
.progress-bar-coti .bar {
    height: 100%;
    background: #0d6efd;
    transition: width 0.3s;
}
.cotizador-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.cotizador-nav .navbar-brand {
    font-weight: 700;
}
