.reasons-section {
    background: linear-gradient(180deg, #1E2D4C 0%, #101828 100%);
    padding-top: 96px;
    padding-bottom: 160px;
    width: 100%;
}

.reasons-container {
    max-width: 1512px;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* --- CABECERA --- */
.reasons-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px auto;
}

.reasons-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #9EA5B3;
    margin-bottom: 16px;
}

.reasons-main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0px;
    margin-bottom: 24px;
}

.reasons-main-title span {
    display: block;
    /* Separados uno debajo del otro */
}

.green-title {
    color: var(--color-secondary);
    /* #4CA845 */
}

.white-title {
    color: #F2F2F2;
}

.reasons-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0.25px;
    color: #F2F2F2;
}

/* --- GRID DE TARJETAS (MOSAICO ASIMÉTRICO) --- */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 842px;
}

/* Tarjeta Base */
.reason-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 30px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Distribución asimétrica según la captura */
.reason-card:nth-child(1) {
    grid-column: span 6;
}

/* Fila 1 - Ancha */
.reason-card:nth-child(2) {
    grid-column: span 4;
}

/* Fila 1 - Estrecha */
.reason-card:nth-child(3) {
    grid-column: span 4;
}

/* Fila 2 - Estrecha */
.reason-card:nth-child(4) {
    grid-column: span 6;
}

/* Fila 2 - Ancha */
.reason-card:nth-child(5) {
    grid-column: span 6;
}

/* Fila 3 - Ancha */
.reason-card:nth-child(6) {
    grid-column: span 4;
}

/* Fila 3 - Estrecha */

/* Icono wrapper circular */
.card-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #EBF5EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.black-wrapper {
    background-color: #DEE5F2;
}

.card-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Textos dentro de la Tarjeta */
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
    color: var(--color-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.card-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: var(--color-neutral-dark);
    position: relative;
    z-index: 2;
    max-width: 100%;
}

/* Número gigante de fondo */
.card-watermark,
.left-watermark {
    position: absolute;
    bottom: 10px;
    right: 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12rem;
    line-height: 1;
    color: #F4F5F7;
    user-select: none;
    z-index: 1;
}

.left-watermark {
    left: -5px;
}

/* --- ANIMACIÓN FADE-IN (Scroll) --- */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .reasons-container {
        padding-left: 40px;
        padding-right: 40px;

    }

    .reasons-grid {
        gap: 16px;
    }

    .reason-card {
        min-height: 340px;
        padding: 24px;
    }

    .card-title {
        font-size: 26px;
        line-height: 32px;
    }

    .card-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .card-watermark {
        font-size: 8rem;
    }

    .card-icon-wrapper {
        margin-bottom: 24px;
    }
}

/* --- FAB Button (móvil) --- */
.reasons-fab {
    display: none;
}

@media (max-width: 768px) {
    .reasons-section {
        padding-top: 64px;
        padding-bottom: 120px;
    }

    .reasons-container {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .reasons-main-title {
        font-size: 32px;
        line-height: 40px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
    }

    .reason-card {
        grid-column: auto !important;
        min-height: auto;
        padding: 24px;
    }

    .card-title {
        font-size: 22px;
        line-height: 28px;
    }

    .card-subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    .card-watermark,
    .left-watermark {
        right: 26px;
        left: auto;
        bottom: 10px;
        font-size: 6rem;
    }

    .card-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    .card-icon {
        width: 28px;
        height: 28px;
    }

    .reasons-fab {
        display: flex;
        align-items: center;
        justify-content: center;
        position: sticky;
        bottom: 24px;
        z-index: 50;
        margin: 0 auto;
        width: fit-content;
        min-width: 200px;
        padding: 14px 28px;
        background-color: #4CA845;
        color: #FFFFFF;
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.2px;
        text-align: center;
        text-decoration: none;
        border-radius: 100px;
        box-shadow: 0 4px 20px rgba(76, 168, 69, 0.4);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .reasons-fab:active {
        transform: scale(0.97);
    }
}