﻿.ventajas-banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: #eaf6fb;
    margin-bottom: 0;
}

.ventajas-header {
    background: rgb(245,129,32);
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 22px 0 18px 0;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.ventajas-section {
    width: 100%;
    background: white;
    padding: 40px 0 32px 0;
    display: flex;
    justify-content: center;
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 32px;
}

.ventaja-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.ventaja-icon {
    width: 170px;
    height: 170px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ventaja-icon img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.ventaja-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ventaja-title {
    color: #0077b6;
    font-weight: bold;
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.ventaja-desc {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 0;
}

@media (max-width: 991.98px) 
{
    .ventajas-header {
        font-size: 1.5rem;
        padding: 12px 0 8px 0;
    }

    .ventajas-section {
        padding: 24px 0 16px 0;
    }

    .ventajas-grid {
        grid-template-columns: 1fr;
        gap: 32px 0;
        margin: 0 12px;
    }

    .ventaja-item {
        gap: 24px;
    }

    .ventaja-icon {
        width: 110px;
        height: 110px;
    }

    .ventaja-icon img {
        width: 70px;
        height: 70px;
    }
}
