/* ===================================================
   SISTEMA DE DISEÑO – RED INTEREMPRESARIAL
=================================================== */
:root {
    --primary-dark: #0b1a33;
    --secondary-dark: #081225;
    --gold: #d4af37;
    --gold-soft: rgba(212,175,55,0.15);
    --text-light: #f1f5f9;
    --text-muted: #cbd5e1;
    --card-bg: rgba(15, 23, 42, 0.88);
    --border-gold: rgba(212,175,55,0.25);
}

/* ===================================================
   RESET BASE
=================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================================
   SECCIÓN GENERAL CENTRADA
=================================================== */
.section-center {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

/* ===================================================
   TARJETA CORPORATIVA PREMIUM
=================================================== */
.card-premium {
    max-width: 900px;
    padding: 60px 55px;
    border-radius: 24px;

    background: var(--card-bg);
    backdrop-filter: blur(10px);

    border: 1px solid var(--border-gold);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.03);

    transition: transform .6s cubic-bezier(.22,1,.36,1),
                box-shadow .6s ease;

    animation: fadeUp 1s ease forwards;
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.65);
}

/* ===================================================
   BADGE SUPERIOR
=================================================== */
.badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;

    color: var(--gold);
    background: var(--gold-soft);

    border-radius: 999px;
}

/* ===================================================
   TÍTULOS
=================================================== */
.card-premium h1,
.card-premium h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.card-premium h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--gold);
}

/* ===================================================
   TEXTO
=================================================== */
.card-premium p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.card-premium strong {
    color: var(--gold);
    font-weight: 600;
}

/* ===================================================
   LISTAS
=================================================== */
.card-premium ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.card-premium ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ===================================================
   FRASE FINAL
=================================================== */
.closing-statement {
    margin-top: 30px;
    font-weight: 500;
    color: var(--text-light);
}

/* ===================================================
   ANIMACIÓN SUAVE
=================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 768px) {
    .card-premium {
        padding: 45px 30px;
    }

    .card-premium h1,
    .card-premium h2 {
        font-size: 26px;
    }

    .card-premium p {
        font-size: 1rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Indicador */
.scroll-indicator {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeInScroll 2s ease 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Línea animada */
.scroll-line {
    width: 2px;
    height: 35px;
    background: var(--gold);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollMove 1.8s infinite;
}

/* Animaciones */
@keyframes scrollMove {
    0% { top: -20px; }
    100% { top: 40px; }
}

@keyframes fadeInScroll {
    to {
        opacity: 1;
    }
}

/* =========================
   PROCESO ESTRATÉGICO
========================= */

.process-wrapper {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
    color: #e5e7eb;
}

.process-hero {
    text-align: center;
    margin-bottom: 80px;
}

.process-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #d4af37);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.process-subtitle {
    max-width: 700px;
    margin: auto;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.process-section {
    position: relative;
    padding-left: 120px;
}

.process-line {
    display:none;
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.22,1,.36,1);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    left: -90px;
    top: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #ffffff;
}

.process-step p {
    color: #cbd5e1;
    line-height: 1.8;
}

.closing-statement {
    margin-top: 60px;
    text-align: center;
    font-weight: 500;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .process-section {
        padding-left: 40px;
    }

    .step-number {
        left: -40px;
    }
}


/* =========================
   CONTACTO PREMIUM
========================= */

body {
    background: radial-gradient(circle at 80% 20%, rgba(212,175,55,0.08), transparent 40%),
                linear-gradient(135deg, #0b1a33, #081225);
}

/* Contenedor general */
.contenedor-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

/* Caja principal */
.contenedor {
    max-width: 1100px;
    width: 100%;
    padding: 70px 60px;
    border-radius: 28px;

    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212,175,55,0.2);

    box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        0 0 40px rgba(212,175,55,0.08);

    text-align: center;

    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(.22,1,.36,1);
}

.contenedor.activo {
    opacity: 1;
    transform: translateY(0);
}

/* Badge elegante */
.badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 25px;
    border-radius: 999px;
    background: rgba(212,175,55,0.12);
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Título */
.contenedor h1 {
    font-size: 2.6rem;
    margin-bottom: 60px;

    background: linear-gradient(90deg, #ffffff, #d4af37);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Grid equipo */
.equipo-contacto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Tarjetas colaborador */
.colaborador {
    padding: 40px;
    border-radius: 22px;

    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(212,175,55,0.15);

    transition: all .6s cubic-bezier(.22,1,.36,1);
    position: relative;
    overflow: hidden;
}

/* Glow sutil */
.colaborador::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 60%);
    opacity: 0;
    transition: opacity .6s ease;
}

.colaborador:hover::before {
    opacity: 1;
}

.colaborador:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Nombre */
.colaborador h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #ffffff;
}

/* Texto */
.colaborador p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 10px;
}

/* Links */
.colaborador a {
    color: #d4af37;
    text-decoration: none;
    position: relative;
}

.colaborador a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width .4s ease;
}

.colaborador a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .contenedor {
        padding: 50px 30px;
    }

    .contenedor h1 {
        font-size: 2rem;
    }
}


