:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #00ffff;
    --accent-glow: rgba(0, 255, 255, 0.5);
    --gray-light: #f0f0f0;
    --gray-dark: #1a1a1a;
    --gray-darker: #0d0d0d;
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fondo Animado */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    transform: perspective(500px) rotateX(60deg);
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { top: 20%; left: 80%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 10%; animation-delay: 1s; }
.particle:nth-child(3) { top: 80%; left: 50%; animation-delay: 2s; }
.particle:nth-child(4) { top: 40%; left: 30%; animation-delay: 3s; }
.particle:nth-child(5) { top: 10%; left: 60%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 90%; animation-delay: 5s; }
.particle:nth-child(7) { top: 30%; left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { top: 90%; left: 20%; animation-delay: 7s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Header - CORREGIDO */
header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.nav-btn:hover .btn-icon {
    transform: scale(1.2);
}

.login-btn {
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1));
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Menú Hamburguesa - COMPLETAMENTE CORREGIDO */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 35px;
    height: 35px;
    justify-content: space-between;
    align-items: center;
    z-index: 1002;
    position: relative;
}

.mobile-menu-btn .bar {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--accent-color);
    transition: var(--transition);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 8px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover .btn-glow {
    left: 100%;
}

.btn-primary:hover {
    color: var(--secondary-color);
    background-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    background: rgba(0, 255, 255, 0.1);
}

.btn-card {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-arrow {
    transition: var(--transition);
}

.btn-card:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--gray-darker);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

/* Nuevas Secciones */
.technologies {
    padding: 6rem 0;
    background: var(--gray-dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-item p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.testimonials {
    padding: 6rem 0;
    background: var(--gray-darker);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-light);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-light);
}

.features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    margin: 0;
    font-size: 0.9rem;
}

.about-visual {
    position: relative;
    height: 400px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.card-content {
    text-align: center;
}

.card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.floating-card h4 {
    font-size: 1rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--gray-darker);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--gray-light);
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-item span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    font-family: 'Rajdhani', sans-serif;
    transition: var(--transition);
    border-radius: 8px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    padding: 3rem 0 1rem;
    background: var(--gray-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* RESPONSIVE DESIGN - CORREGIDO COMPLETAMENTE */

/* Tablets */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: -1;
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Móviles Grandes */
@media (max-width: 768px) {
    /* Header y Navegación Móvil - CORREGIDO */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1001;
        transition: left 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-container.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 2rem;
    }
    
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(-20px);
        animation: fadeInUp 0.5s ease-out forwards;
    }
    
    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links li:nth-child(4) { animation-delay: 0.4s; }
    
    .nav-btn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 1.5rem 2rem;
        width: 100%;
        border: none;
        border-radius: 0;
        background: transparent;
        font-size: 1.2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-btn:hover {
        background: rgba(0, 255, 255, 0.1);
        border: none;
        border-bottom: 1px solid var(--accent-color);
        transform: none;
    }
    
    .login-btn {
        background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), transparent);
        border: none;
        margin: 0;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }
    
    .login-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    .login-btn:hover::before {
        left: 100%;
    }
    
    .login-btn:hover {
        background: rgba(0, 255, 255, 0.15);
        box-shadow: none;
    }
    
    .btn-icon {
        font-size: 1.4rem;
        filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
    }
    
    /* Hero Section */
    .hero {
        margin-top: 70px;
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Technologies */
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Móviles Pequeños */
@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        padding: 1rem;
    }
    
    .nav-btn {
        padding: 1.2rem 1rem;
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn-icon {
        font-size: 1.2rem;
    }
    
    .service-card,
    .tech-item,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Animaciones específicas para el menú móvil */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ===== HERO AFILIACIONES ===== */
.hero-affiliate {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.hero-affiliate-content {
    max-width: 800px;
    margin: 0 auto;
}

.titulo-neon {
    font-size: 3.5rem;
    margin: 0 0 20px;
    text-align: center;
    color: #00f0ff;
    text-shadow: 0 0 20px #00f0ff, 0 0 40px #00f0ff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.descripcion-general {
    text-align: center;
    font-size: 1.3rem;
    color: #bbb;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECCIÓN AFILIACIONES ===== */
.afiliaciones-section {
    padding: 50px 0 100px;
}

.afiliaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.afiliacion-item {
    position: relative;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border-radius: 20px;
    padding: 30px;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.afiliacion-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,255,255,0.2);
    border-color: rgba(0,255,255,0.3);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 1;
}

.afiliacion-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    align-self: flex-start;
}

.afiliacion-item h2 {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.afiliacion-item p {
    position: relative;
    z-index: 2;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ===== SATURN BOT ===== */
.saturn-bot {
    background: linear-gradient(135deg, #0a1a2a 0%, #152642 100%);
    border: 2px solid #00a8ff;
}

.saturn-bot:hover {
    box-shadow: 0 20px 40px rgba(0,168,255,0.3);
}

/* ===== SATURN PREMIUM ===== */
.saturn-premium {
    background: linear-gradient(135deg, #1a1a0a 0%, #423815 100%);
    border: 2px solid gold;
    position: relative;
    overflow: hidden;
}

.saturn-premium:hover {
    box-shadow: 0 20px 40px rgba(255,215,0,0.3);
}

.dorado {
    color: gold;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.saturn-ring {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    animation: spin 15s linear infinite;
    z-index: 1;
}

/* ===== GOODLYSHARE ===== */
.goodlyshare {
    background: linear-gradient(135deg, #2a0a1a 0%, #421538 100%);
    border: 2px solid #ff006a;
}

.goodlyshare:hover {
    box-shadow: 0 20px 40px rgba(255,0,106,0.3);
}

.descuento {
    color: #ff006a;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,0,106,0.5);
}

/* ===== LISTA DE BENEFICIOS ===== */
.beneficios-list {
    position: relative;
    z-index: 2;
    margin: 2rem 0;
    flex-grow: 1;
}

.beneficio {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.beneficio:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.beneficio-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

/* ===== CÓDIGO DE DESCUENTO ===== */
.codigo-descuento {
    position: relative;
    z-index: 2;
    background: rgba(255,215,0,0.1);
    border: 1px solid gold;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.codigo-descuento strong {
    font-size: 1.1rem;
    color: gold;
}

/* ===== SECCIÓN DE PRECIO ===== */
.precio-section {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 2rem 0;
}

.precio {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.periodo {
    font-size: 1rem;
    font-weight: normal;
}

.precio-sub {
    color: #ccc;
    font-size: 0.9rem;
}

/* ===== BOTONES ESPECIALES ===== */
.btn-gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    font-weight: 700;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    box-shadow: 0 0 20px rgba(255,215,0,0.5);
    color: #000;
}

.btn-pink {
    background: linear-gradient(45deg, #ff006a, #ff4d94);
    color: #fff;
    border: none;
    font-weight: 700;
}

.btn-pink:hover {
    background: linear-gradient(45deg, #ff4d94, #ff006a);
    box-shadow: 0 0 20px rgba(255,0,106,0.5);
    color: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ===== ANUNCIOS ===== */
.ads-container {
    padding: 50px 0;
    background: rgba(0,0,0,0.5);
}

.ads-box {
    background: rgba(20,20,20,0.9);
    border: 2px dashed #555;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    color: #bbb;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
    text-align: center;
}

.ads-box h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.ads-box p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== ANIMACIONES ESPECIALES ===== */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .afiliaciones-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .titulo-neon {
        font-size: 2.5rem;
    }
    
    .afiliaciones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .afiliacion-item {
        min-height: 600px;
        padding: 20px;
    }
    
    .afiliacion-item h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .titulo-neon {
        font-size: 2rem;
    }
    
    .descripcion-general {
        font-size: 1.1rem;
    }
    
    .afiliacion-item {
        padding: 15px;
    }
    
    .precio {
        font-size: 2rem;
    }
    
    .beneficio {
        padding: 0.6rem;
    }
}

/* planes-styles.css - VERSIÓN MEJORADA */
:root {
    --plan-basic: #00a8ff;
    --plan-standard: #9c88ff;
    --plan-partner: #fbc531;
    --plan-featured-glow: rgba(156, 136, 255, 0.6);
    --neon-glow: 0 0 10px, 0 0 20px, 0 0 30px;
}

/* Partículas especiales para planes */
.plan-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.plan-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: planParticleFloat 15s linear infinite;
}

.plan-particle:nth-child(1) {
    background: var(--plan-basic);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.plan-particle:nth-child(2) {
    background: var(--plan-standard);
    top: 30%;
    right: 10%;
    animation-delay: 3s;
}

.plan-particle:nth-child(3) {
    background: var(--plan-partner);
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.plan-particle:nth-child(4) {
    background: var(--plan-basic);
    top: 60%;
    right: 20%;
    animation-delay: 9s;
}

.plan-particle:nth-child(5) {
    background: var(--plan-standard);
    bottom: 10%;
    right: 5%;
    animation-delay: 12s;
}

@keyframes planParticleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Section Planes Mejorada */
.hero-plans {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(156, 136, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-plans-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(156, 136, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.titulo-neon {
    font-size: 4rem;
    margin: 0 0 20px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
}

.titulo-neon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.descripcion-general {
    text-align: center;
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Contador animado */
.counter-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.counter {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 0.9rem;
    color: #aaa;
}

/* Plan Toggle Mejorado */
.plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.plan-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.plan-toggle:hover::before {
    left: 100%;
}

.toggle-label {
    font-weight: 500;
    color: #aaa;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.toggle-label.active {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount-badge {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(156, 136, 255, 0.2));
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.toggle-switch {
    position: relative;
    width: 70px;
    height: 35px;
}

.toggle-checkbox {
    display: none;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #333, #222);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.toggle-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 27px;
    width: 27px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(45deg, var(--accent-color), #00a8ff);
    transition: .4s;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--accent-color);
}

.toggle-checkbox:checked + .toggle-slider {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(156, 136, 255, 0.2));
}

.toggle-checkbox:checked + .toggle-slider:before {
    transform: translateX(35px);
    background: linear-gradient(45deg, #9c88ff, #8c7ae6);
    box-shadow: 0 0 10px #9c88ff;
}

.toggle-checkbox:checked + .toggle-slider .toggle-glow {
    opacity: 1;
}

/* Sección de Planes Mejorada */
/* planes-styles.css - VERSIÓN MEJORADA */
:root {
    --plan-basic: #00a8ff;
    --plan-standard: #9c88ff;
    --plan-partner: #fbc531;
    --plan-featured-glow: rgba(156, 136, 255, 0.6);
    --neon-glow: 0 0 10px, 0 0 20px, 0 0 30px;
}

/* Partículas especiales para planes */
.plan-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.plan-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: planParticleFloat 15s linear infinite;
}

.plan-particle:nth-child(1) {
    background: var(--plan-basic);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.plan-particle:nth-child(2) {
    background: var(--plan-standard);
    top: 30%;
    right: 10%;
    animation-delay: 3s;
}

.plan-particle:nth-child(3) {
    background: var(--plan-partner);
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.plan-particle:nth-child(4) {
    background: var(--plan-basic);
    top: 60%;
    right: 20%;
    animation-delay: 9s;
}

.plan-particle:nth-child(5) {
    background: var(--plan-standard);
    bottom: 10%;
    right: 5%;
    animation-delay: 12s;
}

@keyframes planParticleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Section Planes Mejorada */
.hero-plans {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(156, 136, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-plans-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(156, 136, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.titulo-neon {
    font-size: 4rem;
    margin: 0 0 20px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
}

.titulo-neon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.descripcion-general {
    text-align: center;
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Contador animado */
.counter-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.counter {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 0.9rem;
    color: #aaa;
}

/* Plan Toggle Mejorado */
.plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.plan-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.plan-toggle:hover::before {
    left: 100%;
}

.toggle-label {
    font-weight: 500;
    color: #aaa;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.toggle-label.active {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount-badge {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(156, 136, 255, 0.2));
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.toggle-switch {
    position: relative;
    width: 70px;
    height: 35px;
}

.toggle-checkbox {
    display: none;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #333, #222);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.toggle-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 27px;
    width: 27px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(45deg, var(--accent-color), #00a8ff);
    transition: .4s;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--accent-color);
}

.toggle-checkbox:checked + .toggle-slider {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(156, 136, 255, 0.2));
}

.toggle-checkbox:checked + .toggle-slider:before {
    transform: translateX(35px);
    background: linear-gradient(45deg, #9c88ff, #8c7ae6);
    box-shadow: 0 0 10px #9c88ff;
}

.toggle-checkbox:checked + .toggle-slider .toggle-glow {
    opacity: 1;
}

/* Sección de Planes Mejorada */
.plans-section {
    padding: 100px 0;
    position: relative;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 168, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(156, 136, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 80px;
}

.plan-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-radius: 25px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plan-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.plan-card:hover .plan-glow {
    opacity: 1;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.basic-plan .plan-badge {
    background: linear-gradient(45deg, var(--plan-basic), #0097e6);
    color: #000;
}

.standard-plan .plan-badge {
    background: linear-gradient(45deg, var(--plan-standard), #8c7ae6);
    color: #fff;
}

.partner-plan .plan-badge {
    background: linear-gradient(45deg, var(--plan-partner), #e1b12c);
    color: #000;
}

.plan-badge.popular {
    background: linear-gradient(45deg, #9c88ff, #8c7ae6);
    color: white;
    animation: pulse 2s infinite;
}

.plan-badge.premium {
    background: linear-gradient(45deg, #fbc531, #e1b12c);
    color: #000;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.plan-header h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price {
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.period {
    font-size: 1.2rem;
    color: #aaa;
}

.price-note {
    color: #aaa;
    font-size: 1rem;
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.5;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding-left: 10px;
}

.feature-icon {
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

.feature.disabled {
    opacity: 0.5;
}

.feature.disabled .feature-icon {
    filter: grayscale(1) brightness(0.5);
}

.plan-action {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--plan-basic);
    color: var(--plan-basic);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--plan-basic);
    color: #000;
    box-shadow: 0 0 20px var(--plan-basic);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* Plan Destacado Mejorado */
.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--plan-standard);
    box-shadow: 0 0 40px var(--plan-featured-glow);
    z-index: 1;
    position: relative;
}

.plan-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(156, 136, 255, 0.1) 0%, transparent 50%);
    border-radius: 25px;
    z-index: 0;
}

.plan-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 0 60px var(--plan-featured-glow);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, #9c88ff, #8c7ae6);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

/* Grid de Beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 255, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.benefit-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Sección de Comparación Mejorada */
.comparison-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 168, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(251, 197, 49, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.comparison-table {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(20, 20, 20, 0.8));
    padding: 25px 20px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-col {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-compare-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.plan-compare-badge.basic {
    background: var(--plan-basic);
    color: #000;
}

.plan-compare-badge.standard {
    background: var(--plan-standard);
    color: #fff;
}

.plan-compare-badge.partner {
    background: var(--plan-partner);
    color: #000;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
    align-items: center;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-compare-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.plan-col {
    text-align: center;
    font-size: 1.3rem;
}

.check-icon {
    color: #00ff88;
    filter: drop-shadow(0 0 5px #00ff88);
}

.cross-icon {
    color: #ff4757;
    filter: drop-shadow(0 0 5px #ff4757);
}

/* Sección FAQ Mejorada */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    color: #ccc;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Section Mejorada */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(0,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(156, 136, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ccc;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.guarantee-icon {
    font-size: 1.2rem;
}

/* Animaciones adicionales */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Efectos de texto brillante */
.glow-text {
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
}

/* Responsive */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: scale(1.03) translateY(-10px);
    }
    
    .popular-tag {
        right: -30px;
        padding: 6px 30px;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .titulo-neon {
        font-size: 2.8rem;
    }
    
    .plan-toggle {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 15px 10px;
    }
    
    .feature-col:first-child,
    .plan-col:first-child {
        font-weight: 700;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 10px;
    }
    
    .comparison-header {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantee {
        flex-direction: column;
        align-items: center;
    }
    
    .counter-container {
        gap: 20px;
    }
    
    .counter-item {
        min-width: 120px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .titulo-neon {
        font-size: 2.2rem;
    }
    
    .descripcion-general {
        font-size: 1.1rem;
    }
    
    .plan-card {
        padding: 25px 20px;
    }
    
    .price {
        font-size: 2.8rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .popular-tag {
        right: -25px;
        padding: 5px 25px;
        font-size: 0.6rem;
    }
}