﻿/* --- CONTENEDOR PRINCIPAL --- */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 4%;
}

/* --- DISEÑO DE BLOQUES --- */
.intro-block {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    display: flex;
    gap: 30px;
    align-items: center;
}

.intro-icon-wrapper {
    background-color: #FFF5F5;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .intro-icon-wrapper .material-icons-outlined {
        color: var(--primary-color);
        font-size: 40px;
    }

.intro-text h2 {
    font-size: 19px;
    color: #3e3e3e;
    margin-bottom: 10px;
    font-weight: 700;
}


/* GRILLA DE VALORES / HISTORIA */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.about-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    /*transition: var(--transition);*/
}

    .card-header-icon {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

        .card-header-icon .material-icons-outlined {
            color: var(--primary-color);
            font-size: 28px;
        }

        .card-header-icon h3 {
            font-size: 18px;
            font-weight: 700;
            color: #3e3e3e;
        }

    .about-card p {
        color: #3e3e3e;
        line-height: 1.5;
    }

    /* BANNER DE CIERRE */
    .closure-banner {
        background-color: var(--bg-featured);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

        .closure-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--primary-color);
        }

        .closure-banner p {
            font-size: 15px;
            font-weight: 500;
            color: #3e3e3e;
            max-width: 800px;
            margin: 0 auto;
        }

    /* --- RESPONSIVIDAD --- */
    @media (max-width: 768px) {

        .intro-block {
            flex-direction: column;
            text-align: center;
            padding: 25px;
        }

        .about-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            /*flex-direction: column;*/ /* cambia de fila a columna */
        }
    }
