        /* Variables CSS */
        :root {
          --primary-dark: #0f1115;
          --primary-light: #1a1d24;
          --accent-blue: #4adfff;
          --accent-green: #5eff9e;
          --accent-green-2: #5eff9ea2;
          --accent-purple: #9d4edd;
          --accent-gradient: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
          --accent-gradient-hover: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
          --text-primary: #ffffff;
          --text-secondary: #a0aec0;
          --glass-light: rgba(255, 255, 255, 0.08);
          --glass-dark: rgba(15, 17, 21, 0.7);
          --glass-border: rgba(255, 255, 255, 0.12);
          --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.25);
          --shadow-accent: 0 0 25px rgba(74, 223, 255, 0.4);
          --transition-slow: 0.5s ease;
          --transition-fast: 0.3s ease;
          --muted: #a0aec0;
          --border-radius: 16px;
        }

        /* Estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(15, 17, 21, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            transition: all var(--transition-fast);
            border-bottom: 1px solid var(--glass-border);
        }

        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: var(--shadow-soft);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        } */
.logo-img {
    height: 50px;   /* tamaño en desktop */
    width: auto;
    display: block;
}

/* Tablets */
@media (max-width: 768px) {
    .logo-img {
        height: 42px;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .logo-img {
        height: 36px;
    }
}

       .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: all var(--transition-fast);
            position: relative;
        }
        

        .logo-icon {
            font-size: 1.5rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: color var(--transition-fast);
        }

        .nav-link:hover {
            color: var(--accent-blue);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: width var(--transition-fast);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text-primary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(15, 17, 21, 0.952), rgba(15, 17, 21, 0.836)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: 2.7rem;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(to right, #ffffff, var(--accent-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 30px;
            max-width: 600px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background: var(--accent-gradient);
            color: var(--primary-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all var(--transition-fast);
            box-shadow: 0 4px 15px rgba(74, 223, 255, 0.3);
            margin-top: 5rem;
        }

        .cta-button:hover {
            background: var(--accent-gradient-hover);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(74, 223, 255, 0.4);
        }

        /* Secciones generales */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: left;
            font-size: 1.2rem;
            /* color: var(--text-secondary); */
            color: rgba(246, 248, 248, 0.856);
            max-width: 700px;
            margin: 0 auto 50px;

        }

        .section-subtitle strong {
        color: rgba(79, 243, 196, 0.795)
        }

/* =====================================
   PILARES DEL PROGRAMA
===================================== */

.pillars-section {
    width: 100%;
    padding: 96px 24px;
    display: flex;
    justify-content: center;

    background: radial-gradient(
        circle at top,
        rgba(120, 140, 255, 0.12),
        rgba(10, 12, 18, 0.98) 70%
    );
}

.pillars-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

/* HEADER */

.pillars-header {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.pillars-title {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d6dcff 45%,
        #9aa6ff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pillars-title span {
    display: block;
    margin-top: 6px;
}

.pillars-intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(230, 235, 255, 0.9);
}

/* GRID */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CARD */

.pillar-card {
    padding: 42px 36px;
    border-radius: 26px;
    text-align: center;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* ICON */

.pillar-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        rgba(154, 166, 255, 0.25),
        rgba(154, 166, 255, 0.1)
    );
}

.pillar-icon i {
    font-size: 1.6rem;
    color: #9aa6ff;
}

/* TEXT */

.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.pillar-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(220, 225, 255, 0.88);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pillars-section {
        padding: 76px 16px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .pillar-card {
        padding: 36px 28px;
    }

    .pillars-title {
        font-size: 1.75rem;
    }
}



/* =====================================
   COMPONENTES – LEVEL UP BUSINESS
===================================== */

.components-section {
    width: 100%;
    padding: 96px 24px;
    display: flex;
    justify-content: center;

    background: radial-gradient(
        circle at top,
        rgba(120, 140, 255, 0.13),
        rgba(10, 12, 18, 0.97) 70%
    );
}

.components-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

/* HEADER */

.components-header {
    max-width: 760px;
    margin: 0 auto 76px;
    text-align: center;
}

.components-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 20px;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #e3e7ff;
    background: rgba(140, 155, 255, 0.18);
    border-radius: 999px;
}

.components-title {
    font-size: clamp(1.9rem, 3.4vw, 2.45rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 22px;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d6dcff 45%,
        #9aa6ff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.components-title span {
    display: block;
    margin-top: 6px;
}

.components-intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(230, 235, 255, 0.92);
}

/* GRID */

.components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CARD */

.component-card {
    padding: 44px 38px;
    border-radius: 26px;
    text-align: left;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.component-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

/* ICON */

.component-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        rgba(154, 166, 255, 0.28),
        rgba(154, 166, 255, 0.12)
    );
}

.component-icon i {
    font-size: 1.4rem;
    color: #9aa6ff;
}

/* TEXT */

.component-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.component-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(220, 225, 255, 0.88);
}

.component-note {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #b8c0ff;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .components-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .components-section {
        padding: 76px 16px;
    }

    .components-header {
        margin-bottom: 56px;
    }

    .components-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .component-card {
        padding: 36px 28px;
    }

    .components-title {
        font-size: 1.75rem;
    }
}


        /* Tarjetas */
        .card {
            background: var(--glass-light);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid var(--glass-border);
            transition: all var(--transition-fast);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-soft), var(--shadow-accent);
        }

        .card-icon {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .card-title {
            font-size: 1.25rem;
            margin-bottom: 15px;
        }

        .card-text {
            color: var(--text-secondary);
        }



/* =====================================
   PURPOSE STATEMENT – LEVEL UP BUSINESS
   AJUSTE WEB (DESKTOP)
===================================== */

.purpose-statement-section {
    width: 100%;
    padding: 72px 24px; /* ↓ antes 96px */
    display: flex;
    justify-content: center;

    background: radial-gradient(
        circle at top,
        rgba(120, 140, 255, 0.12),
        rgba(10, 12, 18, 0.97) 72%
    );
}

.purpose-statement-container {
    width: 100%;
    max-width: 1000px; /* ↓ antes 1100px */
}

/* CARD */

.purpose-statement-card {
    max-width: 820px; /* ↓ antes 900px */
    margin: 0 auto;
    padding: 52px 60px 56px; /* ↓ menos alto */
    border-radius: 26px;
    text-align: center;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);

    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* LABEL */

.purpose-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px; /* ↓ */
    padding: 5px 14px;

    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #e4e7ff;
    background: rgba(140, 155, 255, 0.18);
    border-radius: 999px;
}

/* TITLE */

.purpose-statement-title {
    font-size: clamp(1.85rem, 2.8vw, 2.2rem); /* ↓ */
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 22px;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d6dcff 45%,
        #9aa6ff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purpose-statement-title span {
    display: block;
    margin-top: 4px;
}

/* HIGHLIGHT */

.purpose-statement-highlight {
    max-width: 640px; /* ↓ */
    margin: 0 auto 28px;

    font-size: 1rem; /* ↓ */
    line-height: 1.6;
    color: rgba(235, 238, 255, 0.95);
}

/* DIVIDER */

.purpose-divider {
    width: 60px; /* ↓ */
    height: 3px;
    margin: 0 auto 28px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(154, 166, 255, 0.9),
        transparent
    );
    border-radius: 999px;
}

/* TEXT */

.purpose-statement-text {
    max-width: 700px; /* ↓ */
    margin: 0 auto;

    font-size: 0.96rem; /* ↓ */
    line-height: 1.6;
    color: rgba(220, 225, 255, 0.88);
}

.purpose-statement-text strong {
    color: #ffffffdc;
}

/* =========================
   MOBILE (SE MANTIENE)
========================= */

@media (max-width: 768px) {
    .purpose-statement-section {
        padding: 80px 20px;
    }

    .purpose-statement-card {
        padding: 48px 34px 52px;
        border-radius: 24px;
    }

    .purpose-statement-highlight {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .purpose-statement-section {
        padding: 68px 16px;
    }

    .purpose-statement-card {
        padding: 40px 26px 44px;
    }

    .purpose-statement-title {
        font-size: 1.75rem;
    }

    .purpose-statement-text {
        font-size: 0.95rem;
    }
}


/* Línea de tensión */
.insight-line-2 {
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 3px;
    border-radius: 4px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--accent-green-2),
        transparent
    );
}
/* =====================================
   PROPÓSITO
===================================== */

.purpose-section {
    width: 100%;
    padding: 96px 24px;
    display: flex;
    justify-content: center;

    background: linear-gradient(
        180deg,
        rgba(20, 22, 30, 0.95),
        rgba(10, 12, 18, 0.98)
    );
}

.purpose-container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

/* HEADER */

.purpose-header {
    max-width: 760px;
    margin: 0 auto 88px;
    text-align: center;
}

.purpose-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #e3e7ff;
    background: rgba(140, 155, 255, 0.18);
    border-radius: 999px;
}

.purpose-title {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 22px;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d6dcff 45%,
        #9aa6ff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purpose-title span {
    display: block;
    margin-top: 6px;
}

.purpose-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(225, 230, 255, 0.9);
}

/* LISTADO */

.purpose-list {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.purpose-item {
    display: flex;
    align-items: flex-start;
    gap: 26px;

    padding: 28px 30px;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.purpose-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

/* NÚMERO */

.purpose-number {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;

    background: linear-gradient(
        135deg,
        #9aa6ff,
        #cfd6ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    flex-shrink: 0;
}

/* TEXTO */

.purpose-text h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}

.purpose-text p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(220, 225, 255, 0.88);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .purpose-section {
        padding: 80px 20px;
    }

    .purpose-header {
        margin-bottom: 72px;
    }

    .purpose-item {
        padding: 26px 24px;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .purpose-section {
        padding: 68px 16px;
    }

    .purpose-title {
        font-size: 1.75rem;
    }

    .purpose-item {
        flex-direction: column;
        gap: 14px;
    }

    .purpose-number {
        font-size: 1.9rem;
    }
}





        /* Footer */
        .footer {
            background: var(--primary-light);
            padding: 80px 0 30px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-about p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after, .footer-contact h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-gradient);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--accent-blue);
        }

        .footer-contact p {
            color: var(--text-secondary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--accent-blue);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--glass-light);
            border-radius: 50%;
            color: var(--text-primary);
            text-decoration: none;
            transition: all var(--transition-fast);
        }

        .social-links a:hover {
            background: var(--accent-blue);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--glass-border);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }


/* =====================================
   IDENTIDAD – MISIÓN · VISIÓN · VALORES
===================================== */

.identity-section {
    width: 100%;
    padding: 96px 24px;
    display: flex;
    justify-content: center;

    background: radial-gradient(
        circle at top,
        rgba(120, 140, 255, 0.14),
        rgba(8, 10, 18, 0.96) 70%
    );
}

.identity-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

/* =====================================
   HEADER
===================================== */

.identity-header {
    max-width: 760px;
    margin: 0 auto 88px;
    text-align: center;
}

.identity-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;
    padding: 6px 14px;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #e3e7ff;
    background: rgba(140, 155, 255, 0.18);
    border-radius: 999px;
}

.identity-title {
    margin: 0 auto;

    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    font-weight: 700;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d6dcff 45%,
        #9aa6ff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.identity-title span {
    display: block;
    margin-top: 6px;
}

/* =====================================
   MISIÓN & VISIÓN
===================================== */

.identity-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;

    margin-bottom: 96px;
}

.identity-card {
    padding: 34px 30px;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.identity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.identity-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.identity-card-head i {
    font-size: 1.35rem;
    /* color: #9aa6ff; */
        background: linear-gradient(
        135deg,
        #ffc2c2,
        #5df096
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.identity-card-head h3 {
    font-size: 1.5rem;
    font-weight: 700;
   /* color: #9aa6ff; */
    display: flex;
  align-items: center;

      background: linear-gradient(
        135deg,
        #ffc2c2,
        #5df096
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

  
}

.identity-card-head {
    display: flex;
    flex-direction: column; /* Ícono arriba, texto abajo */
    align-items: center;    /* Centra horizontalmente */
    text-align: center;     /* Centra textos */
    gap: 8px;               /* Espacio entre icono y título */
}

/* Opcional: tamaño de icono */
.identity-card-head i {
    font-size: 2rem;
}

.identity-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(247, 253, 253, 0.92);
    margin-bottom: 16px;
}

/* =====================================
   VISIÓN LISTA
===================================== */

.vision-list {
    list-style: none;
    margin-top: 22px;
    padding: 0;
}

.vision-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.95rem;
    color: rgba(225, 230, 255, 0.9);
}

.vision-list li:last-child {
    border-bottom: none;
}

.vision-list span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vision-list i {
    color: #9aa6ff;
    font-size: 0.9rem;
}

.vision-list strong {
    color: #ffffffd3;
    font-weight: 600;
}

/* =====================================
   VALORES
===================================== */

.values-section {
    text-align: center;
}

.values-title {
    margin-bottom: 56px;

    font-size: 1.7rem;
    font-weight: 700;
    /* color: #ffffff; */
        background: linear-gradient(
        135deg,
        #a4b8df,
        #f8f7b491,
        #d8e6dd
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.values-title i {
    margin-right: 10px;
    color: #9aa6ff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.value-item {
    padding: 30px 26px;
    border-radius: 20px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.015)
    );

    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
}

.value-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: #9aa6ff;
}

.value-item h4 {
    margin-bottom: 10px;

    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(220, 225, 255, 0.88);
}


/* =====================================
   ÁREAS ESPECIALIZADAS – NIVEL EJECUTIVO
===================================== */

.specialized-areas-section {
    padding: 96px 24px;
    background: radial-gradient(
        circle at top,
        rgba(120,140,255,0.12),
        rgba(10,12,18,0.96) 70%
    );
}

.areas-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.areas-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
}

.areas-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9aa6ff;
}

.areas-title {
    font-size: clamp(2.1rem, 3vw, 2.6rem);
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #b0dcff, #7cf8b4ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     line-height: 1.25;
}

.areas-intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(220,225,255,0.9);
}

/* Grid */

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.area-card {
    padding: 30px 28px 32px;
    border-radius: 22px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}

.area-icon {
    font-size: 1.35rem;
    margin-bottom: 16px;
    /* color: #9aa6ff; */
            background: linear-gradient(
        135deg,
        #ffc2c2,
        #71bb8a
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.area-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    /* color: #ffffff; */
        background: linear-gradient(
        135deg,
        #ffc2c2,
        #5df0e9
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    font-weight: 700;
}

.area-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-card li {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(220,225,255,0.85);
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
}

.area-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9aa6ff;
}




/* NO usar text-align:center en .area-card porque afecta al UL */
/* Centramos solo los elementos necesarios */

.areas-grid .area-card .area-icon,
.areas-grid .area-card h3 {
    text-align: center;
}

/* Asegura que el icono quede centrado siempre */
.areas-grid .area-card .area-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Opcional: tamaño del ícono */
.areas-grid .area-card .area-icon i {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* El UL mantiene alineación izquierda */
.areas-grid .area-card ul {
    text-align: left;
}


/* Club */

.club-highlight {
    max-width: 920px;
    margin: 0 auto;
    padding: 38px 44px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(154,166,255,0.18),
        rgba(90,100,255,0.08)
    );
    border: 1px solid rgba(154,166,255,0.35);
}

.club-highlight h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
    color: #ffffff;
}

.club-highlight h3 i {
    margin-right: 10px;
    color: #cfd6ff;
}

.club-highlight p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(235,238,255,0.95);
}

/* Mobile */

@media (max-width: 768px) {
    .specialized-areas-section {
        padding: 80px 20px;
    }

    .areas-header {
        margin-bottom: 56px;
    }

    .club-highlight {
        padding: 32px 26px;
    }
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 768px) {
    .identity-section {
        padding: 82px 20px;
    }

    .identity-header {
        margin-bottom: 72px;
    }

    .identity-blocks {
        gap: 28px;
        margin-bottom: 80px;
    }

    .identity-card {
        padding: 30px 26px;
    }

    .values-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .identity-section {
        padding: 68px 16px;
    }

    .identity-header {
        margin-bottom: 60px;
    }

    .identity-title {
        font-size: 1.75rem;
    }

    .identity-card {
        padding: 26px 22px;
    }

    .value-item {
        padding: 26px 22px;
    }
}

        
.claim-box {
  display: flex;
  gap: 1rem;
  padding: 1.8rem 2.2rem;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.16),
    rgba(76, 29, 149, 0.14)
  );
  border: 1px solid rgba(139, 92, 246, 0.28);
  backdrop-filter: blur(8px);
  margin-bottom: 3rem;
}


@media (min-width: 1024px) { /* aplica solo en pantallas grandes */
  .claim-box {
    transform: translateY(-25px); /* sube 30px solo en web */
    max-width: 50%;
    margin-left: 16rem;
 
  }
}




.claim-icon {
  width: 30px;
  height: 30px;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.enfoque__claim p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.45;
}

.enfoque__claim strong {
  display: block;
  font-weight: 600;
}

/* =========================
   DESKTOP (CLAVE)
========================= */

@media (min-width: 1024px) {
  .enfoque {
    padding: 6rem 1.5rem;
  }

  .enfoque__container {
    display: grid;
    grid-template-columns: 420px 1fr;
    column-gap: 4rem;
  }

  .enfoque__header {
    margin-bottom: 0;
  }

  .enfoque__content {
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
  }

  .enfoque__divider {
    display: block;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0),
      rgba(255,255,255,0.25),
      rgba(255,255,255,0)
    );
  }

  .enfoque__claim {
    grid-column: 1 / -1;
    max-width: 720px;
    margin-top: 5rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {
  .enfoque {
    padding: 1rem 1.85rem;
  }

  .enfoque__header h2 {
    font-size: 1.8rem;
    font-weight: 750;
  }

  .enfoque__group li {
    font-size: 0.92rem;
  }

  .claim-box {
    padding: 1.4rem;
    border-radius: 14px;
  }

  .enfoque__claim p {
    font-size: 1.1rem;
  }
}


        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .navbar-container {
                padding: 0 15px;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: var(--primary-dark);
                width: 100%;
                max-width: 600px;
                height: calc(100vh - 70px);
                padding: 40px 20px;
                transition: right 0.5s ease;
                border-left: 1px solid var(--glass-border);
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
                text-align: center;
            }
            
            .nav-link {
                font-size: 1.2rem;
                padding: 10px 0;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .purpose-item {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .cta-button {
                padding: 12px 25px;
            }
            
            .value-box {
                padding: 25px;
            }
        }



/* ===== BLOQUE ECOSISTEMA PREMIUM OSCURO — CORREGIDO ===== */

.ecosistema-dark {
  padding: 40px 20px; /* reducido */
  max-width: 1200px;
  margin: auto;
  background: var(--primary-dark);
  border-radius: var(--border-radius);
}

/* HEADER */
.ecosistema-header h2 {
  text-align: center;
  font-size: 2rem; /* antes 2.4rem, muy grande en móvil */
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px; /* antes 15px */
  
  
}

.ecosistema-header p {
  text-align: center;
  font-size: 1rem; /* antes 1.15rem */
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 25px auto; /* antes 50px (muy grande) */
  line-height: 1.5;
  margin-bottom: 32px;
}

/* Ajuste del título sin separación extra en móviles */
.ecosistema-header h2 {
    white-space: normal; /* permite que se adapte sin saltos agresivos */
    line-height: 1.2; /* compacta verticalmente */
    max-width: 99%;
    margin: 0 auto 8px auto;
    
}

/* Mobile */
@media (max-width: 480px) {
  .ecosistema-header h2 {
    font-size: 1.9rem !important; /* evita cortes */
    /* line-height: 1.15; */
    max-width: 100%;
    margin-bottom: 42px;
  }
}

/* GRID */
.ecosistema-grid {
  display: grid;
  gap: 22px; /* menos espacio */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* CARD */
.eco-card {
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  padding: 22px; /* antes 30px */
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: var(--transition-fast);
  position: relative;
}

/* ICONO */
.eco-icon {
  width: 54px; /* antes 65px */
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: var(--primary-dark);
  font-size: 1.4rem; /* antes 1.7rem */
  margin-bottom: 14px; /* antes 20px */
  box-shadow: 0 4px 14px rgba(0, 217, 255, 0.25);
  transition: var(--transition-fast);
}










.eco-icon {
  display: flex;
  align-items: center;     /* centra verticalmente */
  justify-content: center; /* centra horizontalmente */

  width: 60px;
  height: 60px;
  border-radius: 14px;

  background: var(--accent-gradient);
  color: var(--primary-dark);
  font-size: 1.6rem;

  margin: 0 auto 14px auto;  /* 🔥 centra todo el bloque del icono */
  box-shadow: 0 4px 14px rgba(0, 217, 255, 0.25);
}


/* TITULO TARJETA */
.eco-card h3 {
  font-size: 1.3rem; /* antes 1.3rem */
  margin-bottom: 6px; /* antes 10px */
  /* color: var(--text-primary); */
      background: linear-gradient(
        135deg,
        #ffc2c2,
        #b9ddfa
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-weight: 800;
  line-height: 1.2;
}

/* TEXTO */
.eco-card p,
.eco-card ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.45; /* más compacto */
}

.eco-card ul {
  margin-top: 8px;
  padding-left: 18px;
}

.eco-card ul li {
  margin-bottom: 4px;
}



/* Centra solo icono y título */

.eco-card h3 {
    text-align: center;
    display: block;
    width: 100%;
}

/* Centrado perfecto solo del botón */
.eco-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

/* Botón */
.eco-btn {
    padding: 12px 30px;

    background: linear-gradient(135deg, #b57a6a 0%, #d8a79a 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 6px 14px rgba(0,0,0,0.34),
        0 0 18px rgba(214,159,144,0.28);

    transition: all 0.35s ease;
    width: auto;           /* evita que se estire */
    max-width: max-content; /* previene stretching */
}

.eco-btn:hover {
    background: linear-gradient(135deg, #c58b7a 0%, #e6bfb3 100%);
    transform: translateY(-2px);
    box-shadow:
        0 10px 22px rgba(0,0,0,0.38),
        0 0 28px rgba(224,168,155,0.38);
}

.footer-logo-img {
    width: 200px;          /* tamaño ideal */
    max-width: 100%;       /* adapta en móviles */
    height: auto;          /* mantiene proporción */
    display: block;
    margin-bottom: 16px;
}
