.que-es-aegis {
    width: 100%;
    min-height: calc(100vh - 50px);
    margin: 0;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 2rem;
    background-color: #c9d8f4;
    position: relative;
}

.que-es-aegis h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #1c1261;
    line-height: 1.2;
    max-width: 900px;
    font-family: 'Poppins', sans-serif;
}

.que-es-aegis__contenido {
    text-align: center;
    max-width: 1200px;
    font-family: 'Montserrat', sans-serif;
}

.que-es-aegis__contenido p {
    margin: 0;
    line-height: 1.6;
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

.que-es-aegis__contenido p strong {
color: #1c1261;
  font-weight: 800;
}

.sectores {
    width: 100%;
    max-width: 900px;
    margin-top: 1rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.sectores__titulo {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1261;
    margin: 0 0 1.5rem 0;
}

.sectores__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sector-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.sector-card-icono {
    background-color: #1c1261;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-card-icono img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border: 2px solid #ffffff;
    border-radius: 8px;
}


.sector-card__label {
    font-size: 1rem;
    font-weight: 800;
    color: #34495e;
}



/* Tablet y móviles grandes (768px y menor) */
@media (max-width: 768px) {
    .que-es-aegis {
        padding: 3rem 1.5rem;
        gap: 1.5rem;
    }

    .que-es-aegis h2 {
        font-size: 32px;
    }

    .que-es-aegis__contenido p {
        font-size: 18px;
    }

    .sectores__titulo {
        font-size: 18px;
    }

    .sectores__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sector-card__icon-wrapper img {
        width: 45px;
        height: 45px;
    }
    
    .sector-card__label {
        font-size: 0.9rem;
    }
}

/* Móviles pequeños (480px y menor) */
@media (max-width: 480px) {
    .que-es-aegis {
        padding: 3rem 1rem;
    }

    .que-es-aegis h2 {
        font-size: 32px;
    }

    .que-es-aegis__contenido p {
        font-size: 16px;
    }

    .sectores__grid {
        gap: 1rem;
    }

    .sector-card {
        padding: 1rem 0.5rem;
    }

    .sector-card__icon-wrapper {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .sector-card__icon-wrapper img {
        width: 40px;
        height: 40px;
    }
}