/* =========================================
   3. SOBRE MÍ (Misión y Enfoque)
   ========================================= */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Imágenes o adornos */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
}

.about-img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    overflow: hidden;
    /* Asegura que el video no se salga de los bordes redondeados */
    background-color: var(--white);
    /* Fondo por si tarda en cargar */
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Estilos específicos para el Video interactivo */
.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    /* Mantener la consistencia con la caja contenedora */
}

/* Forma abstracta decorativa detrás de la imagen (toque moderno) */
.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -30px;
    left: -30px;
    z-index: 1;
    animation: morph 8s ease-in-out infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}

/* Contenido de texto */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-mission {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mission-icon {
    font-size: 2rem;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.mission-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.mission-desc {
    color: var(--text-light);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}