:root {
    --primary-color: rgba(33, 37, 41);
    --secondary-color: rgba(33, 37, 41);
    --accent-color: #f59e0b;
}

/* Estilos Generales */
body {
    font-family: 'Segoe UI', system-ui, -apple-system;
    /* padding-top: 80px; */
}

/* Hero Section */
.hero-section {
    position: relative;
    
    background-image: url('../assets/WEBSITE.png');
    background-color: rgba(0, 0, 0, 0.5); 
    background-blend-mode: darken; 
    
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    height: 100vh; 
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#titulo{
    background-image: url('../assets/ISOTIPO\ BLANCO.png');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
}
#navbar {
    background-color: transparent !important;
    backdrop-filter: blur(2px) !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    background-color: rgba(33, 37, 41) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.cta-button {
    background-color: #ffc107; /* Color del botón */
    border: none;
    padding: 10px 20px;
    font-size: 1.25rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e0a800; /* Cambia el color al pasar el mouse */
}

/* Tarjetas de Beneficios */
.benefit-card {
    background: white;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Cotizador */
.cotizador-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
}

.cobertura-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.cobertura-card:hover {
    transform: scale(1.03);
}

.cobertura-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    position: relative;
}

.cobertura-header .badge {
    position: absolute;
    top: -10px;
    right: -10px;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}


#contacto {
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #343a40;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
}

.fa-car-crash, .fa-lock, .fa-balance-scale, .fa-gavel, .fa-first-aid, .fa-road, .fa-suitcase {
    color: #007bff; /* Color azul para los íconos */
}

.cotizador-step {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    @starting-style{
        scale: 0;
    }
}
.active {
    display: block;
    transition: display 0.3s ease allow-discrete, scale 0.3s ease;
}
input[hidden] {
    @starting-style{
        scale: 0;
    }
}
input:not([hidden]) {
    transition: display 0.3s ease allow-discrete, scale 0.3s ease;
}


.form-label {
    font-weight: 500;
    color: #333;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
.contenedor_felicidades{
    display: none !important;
}
#cotizador-step-final{
    position: relative;
    height: 165px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#cotizador-step-final #animacion{
    position: absolute;
    bottom: -140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

div[class="inner show"]{
    max-height: 150px !important;
}