
/* ========== SECCIÓN NOSOTROS ========== */
.about-section {
    padding-top: 120px;
    position: relative;
    background: radial-gradient(circle at 10% 20%, #151530, #0c0c1f 70%);
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,0,168,0.25), transparent 70%);
    top: -120px;
    left: -120px;
    filter: blur(100px);
    z-index: 0;
}

.about-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,229,255,0.25), transparent 70%);
    bottom: -140px;
    right: -140px;
    filter: blur(100px);
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

.about-header {
    margin-top: 80px;
    text-align: center;
    margin-bottom: 80px;
}

.about-header h2 {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(90deg,#00E5FF,#FF00A8,#FFD000);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255,0,168,0.4)) drop-shadow(0 0 40px rgba(0,229,255,0.3));
}

.about-header h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 10px;
    background: linear-gradient(90deg,#FF00A8,#00E5FF,#FFD000);
    background-size: 200%;
    animation: gradientMove 6s linear infinite;
}

.about-subtitle {
    margin-top: 20px;
    font-size: 18px;
    color: #d0d0ff;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-text p {
    margin-bottom: 24px;
    color: #d6d6f0;
    line-height: 1.9;
    font-size: 15px;
}

.about-text strong {
    background: linear-gradient(90deg,#FFD000,#FF00A8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-claim {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg,#00E5FF,#FF00A8,#FFD000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 30px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: 0.4s;
}

.highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg,#FF00A8,#00E5FF,#FFD000);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.highlight:hover::before {
    opacity: 1;
}

.highlight h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #FF00A8;
}

.highlight p {
    color: #ddd;
    font-size: 14px;
}

.highlight:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255,0,168,0.25), 0 0 40px rgba(0,229,255,0.2);
}

/* ========== CTA ========== */
.about-cta {
    text-align: center;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,0,168,0.25), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
}

.about-cta h2 {
    font-size: 44px;
    margin-bottom: 20px;
    background: linear-gradient(90deg,#FFD000,#FF00A8,#00E5FF);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s linear infinite;
}

.about-cta p {
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 16px 50px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg,#FF00A8,#00E5FF);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,0,168,0.4);
}

.btn::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    top: 0;
    left: -200%;
    transition: 0.6s;
}

.btn:hover::after {
    left: 100%;
}

/* ========== FOOTER ========== */
footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    color: #aaa;
    font-size: 14px;
}

/* ========== ANIMACIONES ========== */
@keyframes gradientMove {
    from { background-position: 0%; }
    to { background-position: 300%; }
}

/* ========== RESPONSIVE (CORREGIDO) ========== */
@media (max-width: 768px) {
     .menu-toggle {
    display: block;
    margin-left: auto; /* ESTO ES LO QUE EMPUJA EL BOTÓN A LA DERECHA */
    margin-right: 20px; /* Separación del borde derecho de la pantalla */
    transform: scale(0.7); 
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}
    .navbar {
        padding: 18px 20px;
    }

    .navbar ul {
        display: none; /* Ocultamos el menú horizontal */
    }

    /* 2. Lógica del menú desplegable */
    
    .main-nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute; /* Cambiamos de fixed a absolute */
        top: 100%;          /* Se posiciona justo debajo del header */
        left: 0;
        width: 100%;
        background: rgba(9, 9, 17, 0.98); /* Un poco más opaco para que no transparente */
        padding: 40px 0;    /* Un poco más de espacio para respirar */
        align-items: center;
        gap: 25px;
        z-index: 998;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    /* Navbar */

      .logo {
        width: 110px;
        margin-left: 20px;
    }

    /* Ajustes de sección about */
  .about-header {
        margin-top: 40px;  /* 🔹 Cambia de 100px a 40px o menos */
        margin-bottom: 40px;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    .about-text{
    text-align: center;
    }

    .highlight {
        padding: 20px;
        text-align: center;
    }
    .about-cta {
        padding: 80px 20px;
    }
    .about-cta h2 {
        font-size: 1.8rem;
    }
}
