/**
 * EMPRESA PAGE - Samsung Premium Design 2026
 * Prefijo: emp-
 */

/* ================================================================== */
/* VARIABLES                                                          */
/* ================================================================== */
.emp-page {
    --emp-primary: #0066cc;
    --emp-primary-dark: #004d99;
    --emp-accent: #00a3ff;
    --emp-dark: #0a0a0a;
    --emp-gray-900: #1a1a1a;
    --emp-gray-800: #2a2a2a;
    --emp-gray-700: #3a3a3a;
    --emp-gray-600: #4a4a4a;
    --emp-gray-400: #888;
    --emp-gray-300: #aaa;
    --emp-gray-100: #f5f5f5;
    --emp-white: #fff;
    --emp-radius: 16px;
    --emp-radius-sm: 8px;
    --emp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================== */
/* HERO SECTION                                                       */
/* ================================================================== */
.emp-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emp-dark);
    overflow: hidden;
}

.emp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.emp-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #001428 0%, #002B45 40%, #003a5c 70%, #001a30 100%);
}

.emp-hero__pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.emp-hero .contenedor {
    position: relative;
    z-index: 2;
}

.emp-hero__content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.emp-hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emp-accent);
    margin-bottom: 1.5rem;
}

.emp-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--emp-white);
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.emp-hero__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--emp-gray-300);
    margin: 0 0 2.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.emp-hero__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ================================================================== */
/* BUTTONS                                                            */
/* ================================================================== */
.emp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--emp-transition);
    cursor: pointer;
    border: none;
}

.emp-btn--primary {
    background: var(--emp-white);
    color: var(--emp-dark);
}

.emp-btn--primary:hover {
    background: var(--emp-gray-100);
    transform: translateY(-2px);
}

.emp-btn--accent {
    background: var(--emp-primary);
    color: var(--emp-white);
}

.emp-btn--accent:hover {
    background: var(--emp-primary-dark);
    transform: translateY(-2px);
}

/* ================================================================== */
/* STATS SECTION                                                      */
/* ================================================================== */
.emp-stats-section {
    background: var(--emp-white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--emp-gray-100);
}

.emp-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.emp-stat {
    text-align: center;
}

.emp-stat__number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--emp-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.emp-stat__label {
    display: block;
    font-size: 0.9375rem;
    color: var(--emp-gray-600);
    font-weight: 500;
}

@media (max-width: 768px) {
    .emp-stats {
        gap: 2rem;
    }

    .emp-stat {
        flex: 0 0 45%;
    }
}

/* ================================================================== */
/* SECTION HEADERS                                                    */
/* ================================================================== */
.emp-section-header {
    margin-bottom: 4rem;
}

.emp-section-header--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.emp-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emp-primary);
    margin-bottom: 1rem;
}

.emp-section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--emp-dark);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.emp-section-header__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--emp-gray-600);
    margin: 1rem 0 0;
}

/* ================================================================== */
/* SECTIONS GRID                                                      */
/* ================================================================== */
.emp-sections {
    padding: 6rem 0;
    background: var(--emp-white);
}

/* Grid 2x2 para 4 secciones */
.emp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .emp-grid {
        grid-template-columns: 1fr;
    }
}

.emp-card {
    background: var(--emp-gray-100);
    border-radius: var(--emp-radius);
    overflow: hidden;
    transition: var(--emp-transition);
}

.emp-card:hover {
    background: var(--emp-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.emp-card__link {
    display: block;
    padding: 2.5rem;
    text-decoration: none;
    height: 100%;
}

.emp-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emp-white);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: var(--emp-transition);
}

.emp-card:hover .emp-card__icon {
    background: var(--emp-primary);
}

.emp-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--emp-primary);
    transition: var(--emp-transition);
}

.emp-card:hover .emp-card__icon svg {
    stroke: var(--emp-white);
}

.emp-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emp-dark);
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.emp-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--emp-gray-600);
    margin: 0 0 1.5rem;
}

.emp-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--emp-primary);
    transition: var(--emp-transition);
}

.emp-card:hover .emp-card__cta {
    gap: 0.75rem;
}

.emp-card__cta svg {
    width: 18px;
    height: 18px;
    transition: var(--emp-transition);
}

.emp-card:hover .emp-card__cta svg {
    transform: translateX(4px);
}

/* ================================================================== */
/* CTA SECTION                                                        */
/* ================================================================== */
.emp-cta {
    padding: 6rem 0;
    background: linear-gradient(160deg, #001428 0%, #002B45 40%, #003a5c 70%, #001a30 100%);
    position: relative;
    overflow: hidden;
}

.emp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(0, 163, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.emp-cta__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.emp-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--emp-white);
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.emp-cta__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
}

.emp-cta .emp-btn--accent {
    background: var(--emp-white);
    color: #002B45;
}

.emp-cta .emp-btn--accent:hover {
    background: var(--emp-gray-100);
    transform: translateY(-2px);
}

/* ================================================================== */
/* RESPONSIVE                                                         */
/* ================================================================== */
@media (max-width: 768px) {
    .emp-hero {
        min-height: 70vh;
    }

    .emp-hero__text {
        font-size: 1rem;
    }

    .emp-sections,
    .emp-cta {
        padding: 4rem 0;
    }

    .emp-section-header {
        margin-bottom: 2.5rem;
    }

    .emp-card__link {
        padding: 2rem;
    }

    .emp-card__title {
        font-size: 1.25rem;
    }
}
