﻿.hero-section {
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    padding-top: 25px;
    padding-bottom: 70px;
}

.beneficio-card {
    border-radius: 16px;
    transition: all .25s ease;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,.12) !important;
}

/*=========================================
    HERO
=========================================*/
/* Estilo antiguo para la imagen de FIturriaga
    .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}*/

/* Estilo antiguo para la imagen de FIturriaga
    .hero-image img {
    width: 68%;
    max-width: 360px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
    transition: transform .30s ease, box-shadow .30s ease;
}*/

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        width: 100%;
        max-width: 620px;
        height: auto;
        border-radius: 24px;
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

.hero-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 60px rgba(0,0,0,.18);
}
/*=========================================
    PROCESO
=========================================*/
.proceso-numero {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
}
/*=========================================
    ASESOR
=========================================*/
.asesor-img {
    max-width: 320px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
/*=========================================
    FAQ
=========================================*/
.accordion {
    border-radius: 20px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background: #0d6efd;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}
/*=========================================
    CTA FINAL
=========================================*/
.cta-section {
    padding: 80px 0 20px;
}

.cta-box {
    background: linear-gradient(135deg,#0d6efd,#3b82f6);
    border-radius: 30px;
    padding: 70px 40px;
    box-shadow: 0 20px 45px rgba(13,110,253,.25);
}

.cta-box .btn {
    min-width: 240px;
}
/*=========================================
    NAVBAR
=========================================*/
.navbar .btn {
    transition: .30s;
}

/*.navbar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13,110,253,.30);
}*/

/* Botón Cotizar */
.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, .30);
}

/* Botón Comparar */
.navbar .btn-outline-success:hover,
.navbar .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(25, 135, 84, .30);
}

.nav-link {
    font-weight: 600;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #0d6efd;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.hero-badge i {
    font-size: 1.2rem;
}
/*=========================================
    FOOTER
=========================================*/
.footer-custom {
    background: #0f172a;
    color: white;
    padding: 70px 0 30px;
}

.footer-custom h5 {
    margin-bottom: 20px;
}

.footer-custom p {
    color: #cbd5e1;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: .30s;
}

.social-icons a:hover {
    color: #60a5fa;
    transform: translateY(-3px);
}

.footer-custom hr {
    border-color: #334155;
    margin: 40px 0 20px;
}
/*=========================================
    RESPONSIVE
=========================================*/
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 20px;
        padding-bottom: 50px;
        text-align: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-image img {
        width: 75%;
        max-width: 320px;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-section .d-flex {
        justify-content: center;
    }

    .hero-section ul {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 576px) {

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-section .btn {
        width: 100%;
    }

    .hero-image img {
        width: 85%;
    }
}
