/* Estilos específicos para la landing Empresa (Somos ORION) */

/* 1. Hero Section */
.empresa-hero {
    position: relative;
    padding: 200px 0;
    color: var(--color-text-inverse);
    text-align: center;
    overflow: hidden;
}

.empresa-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/7-Empresa/orion-empresa-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.empresa-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.empresa-hero .container {
    position: relative;
    z-index: 2;
}

.empresa-hero h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 0;
    /* Sin animaciones ni transformaciones agresivas, alineado con mayorista.php */
}

/* 2. Sección Layout Intercalado (Staggered) */
.empresa-staggered {
    padding: 140px 0;
    background-color: #f5f5f5;
}

.staggered-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.staggered-row:last-child {
    margin-bottom: 0;
}

.staggered-row--reverse {
    direction: ltr;
    /* Asegurar flujo normal */
}

.staggered-row--reverse .staggered-text {
    order: 2;
}

.staggered-row--reverse .staggered-media {
    order: 1;
}

.staggered-text h2 {
    color: var(--color-text-main);
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.staggered-text p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.staggered-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-box);
}

/* 3. Sección Video/Ondas */
.empresa-video-wrap {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-background-light);
    overflow: hidden;
    text-align: center;
}

.waves-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/7-Empresa/orion-empresa-ondas-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.empresa-video-wrap .container {
    position: relative;
    z-index: 2;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-box);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsivo */
@media (max-width: 992px) {
    .staggered-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .staggered-row--reverse .staggered-text {
        order: 1;
    }

    .staggered-row--reverse .staggered-media {
        order: 2;
    }

    .empresa-hero {
        padding: 140px 0;
    }

    .empresa-hero h1 {
        font-size: 44px;
    }
}