.elementor-34 .elementor-element.elementor-element-41ea303{--display:flex;--overlay-opacity:0.5;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34 .elementor-element.elementor-element-41ea303::before, .elementor-34 .elementor-element.elementor-element-41ea303 > .elementor-background-video-container::before, .elementor-34 .elementor-element.elementor-element-41ea303 > .e-con-inner > .elementor-background-video-container::before, .elementor-34 .elementor-element.elementor-element-41ea303 > .elementor-background-slideshow::before, .elementor-34 .elementor-element.elementor-element-41ea303 > .e-con-inner > .elementor-background-slideshow::before, .elementor-34 .elementor-element.elementor-element-41ea303 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-image:url("https://outletpma.cl/wp-content/uploads/2026/04/2148643248.jpg");--background-overlay:'';}/* Start custom CSS for html, class: .elementor-element-81bf02a *//* --- ESTILOS SECCIÓN QUIÉNES SOMOS --- */

.opma-about-section {
    font-family: 'Montserrat', sans-serif;
    padding: 80px 5%;
    /* Fondo #F0F0F0 (rgb 240, 240, 240) con 90% de opacidad (0.9) */
    background-color: rgba(240, 240, 240, 0.9); 
    color: #333333;
    overflow: hidden; /* Evita que la animación genere scroll horizontal extra */
}

.opma-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- ANIMACIONES DE ENTRADA (KEYFRAMES) --- */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px); /* Empieza 40px más abajo */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Termina en su posición original */
    }
}

/* --- ESTILOS DE LA IMAGEN --- */
.opma-about-image {
    position: relative;
    border-radius: 12px;
    opacity: 0; /* Oculto al inicio para la animación */
    animation: fadeUp 1s ease-out forwards; /* Ejecuta la animación */
}

.opma-about-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.opma-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #485E68;
    border-radius: 8px;
    z-index: 1;
}

/* --- ESTILOS DEL CONTENIDO TEXTUAL --- */
.opma-about-content {
    opacity: 0; /* Oculto al inicio */
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.3s; /* Entra un poco después de la imagen */
}

.opma-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #485E68;
    margin-bottom: 10px;
}

.opma-title {
    font-size: 38px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.opma-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    font-weight: 400;
    margin-bottom: 20px;
}

/* --- CAJAS DE QUÉ HACEMOS Y VISIÓN --- */
.opma-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.opma-feature-box {
    background-color: #ffffff; /* Cajas en blanco puro para que resalten sobre el fondo F0F0F0 */
    padding: 25px 20px;
    border-radius: 6px;
    border-top: 3px solid #485E68;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Sombra muy suave */
}

.opma-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.opma-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 12px;
}

.opma-feature-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .opma-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .opma-about-image img {
        min-height: auto;
        max-height: 400px;
    }

    .opma-image-accent {
        display: none;
    }

    .opma-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .opma-features-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */