#mainContent{
            height: 80vh;
            display:flex;
            justify-content:center;
            align-items:center;
            text-align:center;
            padding:40px 20px;
        background:
        linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
        ),
        url('/src/assets/images/mainAbout.webp');

            background-size:cover;
            background-position:center;
        }

        .heroText h1{
            color:white;
            font-size:3rem;
            max-width:900px;
            margin:auto;
            margin-bottom:20px;
        }

        .heroButton{
            display:inline-block;
            background:#ffd900;
            color:#000;
            text-decoration:none;
            font-weight:bold;
            padding:15px 30px;
            border-radius:12px;
            transition:.3s;
        }

        .heroButton:hover{
            transform:translateY(-3px);
        }

    /* ======================================= */
/* 6. PÁGINA QUIÉNES SOMOS (ABOUT)         */
/* ======================================= */

:root {
    --about-primary: #000000;      /* Negro corporativo */
    --about-accent: #ffd900;       /* Amarillo One Safety */
    --about-text-dark: #1f2937;    /* Gris oscuro para textos principales */
    --about-text-light: #4b5563;   /* Gris medio para párrafos */
    --about-bg-light: #f7f8fb;     /* Fondo gris muy claro (igual al footer) */
    --about-bg-white: #ffffff;
    --about-border: #e5e7eb;
}

/* Contenedor principal para secciones */
.about-section {
    padding: 80px 0;
    color: var(--about-text-dark);
    line-height: 1.7;
    box-sizing: border-box;
}

/* Alternancia de fondos para separar secciones visualmente */
.about-section:nth-child(even) {
    background-color: var(--about-bg-light);
}

.about-section:nth-child(odd) {
    background-color: var(--about-bg-white);
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Tipografía de la sección */
.about-section h2 {
    font-size: 2.2rem;
    color: var(--about-primary);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: bold;
}

.about-section h3 {
    font-size: 1.5rem;
    color: var(--about-primary);
    margin-top: 0;
    margin-bottom: 15px;
}

.about-section h4 {
    font-size: 1.2rem;
    color: var(--about-primary);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-section p {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--about-text-light);
    font-size: 1.05rem;
}

.section-title {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* ======================================= */
/* 6.1. INTRODUCCIÓN Y METODOLOGÍA         */
/* ======================================= */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* ======================================= */
/* 6.2. MISIÓN Y VISIÓN (TARJETAS)         */
/* ======================================= */
.dual-column {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.card {
    flex: 1;
    background: var(--about-bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    /* Borde superior con el amarillo de la marca */
    border-top: 5px solid var(--about-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* ======================================= */
/* 6.3. PILARES Y VALORES (GRID)           */
/* ======================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 30px;
    background: var(--about-bg-white);
    border: 1px solid var(--about-border);
    border-radius: 8px;
    /* Detalle lateral amarillo */
    border-left: 4px solid var(--about-accent);
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.value-item:hover {
    background-color: var(--about-bg-light);
}

.value-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ======================================= */
/* 6.4. METODOLOGÍA (LISTA)                */
/* ======================================= */
.methodology-list {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
}

.methodology-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    color: var(--about-text-light);
    font-size: 1.05rem;
}

.methodology-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--about-primary); /* Check en negro */
    background-color: var(--about-accent); /* Círculo en amarillo */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.methodology-list li strong {
    color: var(--about-primary);
}

/* ======================================= */
/* 6.5. ¿POR QUÉ ELEGIRNOS? (CAJAS)        */
/* ======================================= */
.features-wrapper {
    display: flex;
    gap: 30px;
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 40px 25px;
    background-color: var(--about-bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.feature-box:hover {
    border-color: var(--about-accent);
}

.feature-box h4 {
    color: var(--about-primary);
    position: relative;
    padding-bottom: 15px;
}

.feature-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--about-accent); /* Subrayado amarillo */
}

/* ======================================= */
/* 6.6. RESPONSIVE ABOUT MÓVIL             */
/* ======================================= */
@media (max-width: 992px) {
    .dual-column,
    .features-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }

    .card {
        padding: 30px 20px;
    }

    .value-item {
        padding: 20px;
    }
}