:root {
    --primary-color: #27d900; /* Verde fosforescente */
    --secondary-color: #671f74; /* Morado */
    --dark-color: #121212;
    --light-color: #f5f5f5;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
}

/* Hero Section */

/* Hero Section Mejorada */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(156,39,176,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Títulos y subtítulos dinámicos */
.promo-title, .promo-subtitle {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.promo-title.active, .promo-subtitle.active {
    opacity: 1;
    transform: translateY(0);
}

.promo-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.promo-title .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0,255,157,0.7);
}

.promo-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Indicadores del carrusel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Botones */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 157, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Efecto de partículas */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 4s infinite;
}

/* Animaciones */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .promo-title {
        font-size: 2.2rem;
    }
    
    .promo-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ................*/

/* Promo Banner */
.promo-banner {
    background: var(--gradient);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.promo-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.promo-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.promo-banner p {
    margin-bottom: 1rem;
}

.btn-promo {
    background: var(--dark-color);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-promo:hover {
    background: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}


/* Features Section */
.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 157, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    opacity: 0.8;
}

/* Plans Section */
.plans-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-card.featured {
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 1.2rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features i {
    color: var(--primary-color);
}

.plan-cta {
    text-align: center;
}

.btn-plan {
    background: var(--gradient);
    color: var(--dark-color);
    font-weight: 700;
    width: 100%;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(12, 236, 4, 0.3);
}

.promo-section {
    margin-top: 4rem;
}

.promo-card {
    background: rgba(156, 39, 176, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.promo-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.promo-card p {
    margin-bottom: 1.5rem;
}



/* Speedtest Section */
.speedtest-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.speedtest-container {
    margin-top: 3rem;
}

.speedtest-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.speedtest-gauge {
    flex: 1;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gauge-body {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: var(--dark-color);
    border-radius: 50%;
    position: relative;
    border: 10px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.gauge-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gradient);
    transform-origin: center bottom;
    transform: rotate(0.5turn);
    transition: transform 1s ease-out;
}

.gauge-cover {
    position: absolute;
    width: 70%;
    height: 70%;
    background: var(--dark-color);
    border-radius: 50%;
    top: 15%;
    left: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

#speed-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.speedtest-info {
    flex: 2;
}

.speed-result {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.result-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

.result-box p:first-of-type {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.download p:first-of-type {
    color: var(--primary-color);
}

.upload p:first-of-type {
    color: var(--secondary-color);
}

#start-test {
    width: 100%;
    margin-bottom: 2rem;
}

.speedtest-comparison h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    width: 150px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.bar-container {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    background: var(--gradient);
    transition: width 1s ease-out;
}

.bar-fill.basic {
    width: 10%;
    background: var(--secondary-color);
}

.bar-fill.premium {
    width: 100%;
    background: var(--primary-color);
}

.speedtest-tip {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.speedtest-tip p {
    margin-bottom: 1rem;
}

/* Contact Form */
.request-form {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--light-color);
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 157, 0.2);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.alert-success {
    background: rgba(0, 255, 157, 0.1);
    border-left: 4px solid var(--primary-color);
    color: var(--primary-color);
}

/* Footer */
footer {
    background: rgba(18, 18, 18, 0.9);
    padding: 3rem 2rem 1rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 157, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Promo Banner Mejorado */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
    pointer-events: none;
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--primary-color);
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.promo-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.promo-banner p {
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
}

.benefit-text {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-promo {
    background: white;
    color: var(--secondary-color);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid white;
    margin-top: 1rem;
}

.btn-promo:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.6rem 1rem;
    }
    
    .benefit-text {
        font-size: 0.8rem;
    }
    
    .promo-banner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Estilos para la sección de pagos */
.payment-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.payment-notice {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 4px;
}

.payment-notice i {
    color: #ff9800;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.payment-notice p {
    margin: 0;
    color: #e65100;
    font-weight: 500;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.payment-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-header h3 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
}

.bank-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.payment-details {
    padding: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.detail-item i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.detail-value {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    word-break: break-all;
}

.payment-instruction {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.payment-instruction i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.payment-instruction p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.qr-code {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem;
    border: 1px dashed #ddd;
    border-radius: 8px;
}

.qr-code img {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}

.qr-code p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.payment-footer {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.office-info h3, .contact-info h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.office-info h3 i, .contact-info h3 i {
    color: var(--primary-color);
}

.office-info p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-numbers a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-numbers a:hover {
    color: var(--primary-color);
}

.contact-numbers a i {
    color: var(--secondary-color);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}


.copy-notification {
    position: absolute;
    background: var(--dark-color);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 100;
}

.copy-notification::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: var(--dark-color) transparent transparent;
}


/* Estilos para la sección de pagos */
.payment-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.payment-option {
    padding: 1rem 2rem;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    font-weight: 600;
}

.payment-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-option.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.payment-notice {
    background-color: #fff8e1;
    border-left: 4px solid var(--warning-color);
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 4px;
}

.payment-notice i {
    color: var(--warning-color);
    font-size: 1.5rem;
}

.payment-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.payment-content.active {
    display: block;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.payment-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    color: white;
}

.payment-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.payment-details {
    padding: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.detail-item i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.detail-value {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    word-break: break-all;
    cursor: pointer;
}

.detail-value:hover {
    color: var(--primary-color);
}

.payment-instruction {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.payment-instruction i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.payment-instruction p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.payment-footer {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.copy-notification {
    position: absolute;
    background: var(--dark-color);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 100;
}

.copy-notification::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: var(--dark-color) transparent transparent;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .payment-options {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-option {
        width: 100%;
        text-align: center;
    }
}


/* Estilos para la sección de pagos */
.payment-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.payment-option {
    padding: 1rem 2rem;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    font-weight: 600;
}

.payment-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-option.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.payment-notice {
    background-color: #fff8e1;
    border-left: 4px solid var(--warning-color);
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 4px;
}

.payment-notice i {
    color: var(--warning-color);
    font-size: 1.5rem;
}

.payment-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.payment-content.active {
    display: block;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.payment-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    color: white;
}

.payment-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.payment-details {
    padding: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.detail-item i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.detail-value {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    word-break: break-all;
    cursor: pointer;
}

.detail-value:hover {
    color: var(--primary-color);
}

.payment-instruction {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.payment-instruction i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.payment-instruction p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.payment-footer {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.copy-notification {
    position: absolute;
    background: var(--dark-color);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 100;
}

.copy-notification::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: var(--dark-color) transparent transparent;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .payment-options {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-option {
        width: 100%;
        text-align: center;
    }
}


/* Sección Liga1Max */
.liga-promo {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('assets/images/futbol-peruano-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.liga-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 28, 116, 0.384) 0%, rgba(40, 220, 4, 0.5) 100%);
}

.liga-promo-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.liga-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    animation: pulse 2s infinite;
}

.liga-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    color: #fff;
    font-weight: 800;
}

.liga-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: rgba(100,28,116,0.7);
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #fff;
}

.highlight-item p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.liga-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #28dc04; /* Rojo de la bandera peruana */
    border: 2px solid #28dc04;
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #28dc04;
}

/* Animaciones */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .liga-promo {
        height: auto;
        padding: 4rem 0;
    }
    
    .liga-title {
        font-size: 2rem;
    }
    
    .liga-logo {
        max-width: 200px;
    }
    
    .highlight-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}


/* */

/* Sección Liga1Max */
.liga-promo {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('assets/images/futbol-peruano-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.liga-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(17, 206, 58, 0.5) 100%);
}

.liga-promo-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.liga-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    animation: pulse 2s infinite;
}

.liga-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    color: #fff;
    font-weight: 700;
}

.liga-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: rgba(39, 206, 17, 0.7);
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #fff;
}

.highlight-item p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.liga-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #11ce11; /* Rojo de la bandera peruana */
    border: 2px solid #28dc04;
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #28dc04;
}

/* Animaciones */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .liga-promo {
        height: auto;
        padding: 4rem 0;
    }
    
    .liga-title {
        font-size: 2rem;
    }
    
    .liga-logo {
        max-width: 200px;
    }
    
    .highlight-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* +++++++++++++++Estructura compacta +++++++++++++++++++*/

/* Estilos del header - Versión corregida */
.header {
    background-color: rgba(120, 6, 155, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    gap: 1rem !important;
}

/* Logo */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-shrink: 0 !important;
}

.logo-img {
    height: 50px !important;
    width: auto !important;
    transition: transform 0.3s ease !important;
}

.logo:hover .logo-img {
    transform: rotate(-4deg) !important;
}

.logo-text {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #00a8e8 0%, #00ff9d 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Navegación */
.nav-list {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 0.5rem !important;
    gap: 0.8rem !important;
}

.nav-item {
    position: relative !important;
}

.nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: white !important;
    text-decoration: none !important;
    padding: 0.5rem 0.8rem !important;
    font-size: 0.95rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.nav-link:hover {
    color: #00ff9d !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.nav-icon {
    font-size: 1rem !important;
    transition: transform 0.3s ease !important;
}

.nav-link:hover .nav-icon {
    transform: scale(1.2) !important;
}

/* Redes sociales */
.social-media {
    display: flex !important;
    flex-shrink: 0 !important;
}

.social-group {
    display: flex !important;
    gap: 0.5rem !important;
}

.social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 35px !important;
    height: 35px !important;
    background: rgb(40, 220, 4) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.social-link:hover {
    background: rgb(186, 71, 221) !important;
    transform: translateY(-3px) !important;
}

/* Botón móvil */
.mobile-menu-btn {
    display: none !important;
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 1.3rem !important;
    cursor: pointer !important;
    padding: 0.3rem !important;
    transition: transform 0.3s ease !important;
}

.mobile-menu-btn:hover {
    transform: scale(1.1) !important;
}

/* Media Queries */
@media (max-width: 992px) {
    .header-container {
        padding: 0 1rem !important;
        gap: 0.5rem !important;
    }
    
    .nav-list {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(120, 6, 155, 0.98) !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 1rem 0 !important;
        gap: 1rem !important;
        transform: translateY(-150%) !important;
        transition: transform 0.3s ease !important;
    }
    
    .nav-list.active {
        transform: translateY(0) !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px !important;
    }
    
    .social-group {
        display: none !important;
    }
}

/*---------------------------------------------------*/

/* Speed Test Styles */
.speedtest-container {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}

.speedtest-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 10, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.3);
    border: 1px solid var(--primary);
}

.speedtest-header {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    position: relative;
}

.speedtest-header h3 {
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speedtest-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}

.speedtest-logo img {
    max-width: 90%;
    max-height: 90%;
}

.speedtest-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.speedtest-gauge {
    margin-bottom: 2rem;
    position: relative;
}

.gauge-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.gauge-value #speedValue {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.7);
}

.gauge-value .unit {
    display: block;
    font-size: 1rem;
    color: white;
}

.speedtest-results {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 2rem;
}

.result-box {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    flex: 1;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.result-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.result-box h4 {
    margin: 0 0 0.5rem;
    color: var(--secondary);
}

.result-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.result-box.download .result-value {
    color: #00ff9d;
}

.result-box.upload .result-value {
    color: #6e00ff;
}

.result-box.ping .result-value {
    color: #ffffff;
}

.speedtest-controls {
    text-align: center;
    width: 100%;
}

.btn-test {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.btn-test:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(110, 0, 255, 0.8);
}

.test-status {
    margin-top: 1rem;
    color: var(--secondary);
    font-style: italic;
}

.speedtest-footer {
    padding: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(110, 0, 255, 0.3);
}

.btn-plans {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 0.6rem 1.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-plans:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .speedtest-results {
        flex-direction: column;
    }
    
    .result-box {
        margin: 0.5rem 0;
    }
    
    .gauge-container {
        width: 250px;
        height: 250px;
    }
}





/* ---------------------------------*/

/* About Us Section Styles */
.about-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0a0a1a 0%, #1a0a2a 100%);
    overflow: hidden;
}

/* Efecto de partículas */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.holographic-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(10, 10, 26, 0.7);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(110, 0, 255, 0.5),
                inset 0 0 20px rgba(0, 255, 157, 0.3);
    border: 1px solid var(--primary);
}

.holographic-content {
    position: relative;
    z-index: 3;
}

.neon-text {
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom: 3rem;
    animation: neonGlow 2s infinite alternate;
    text-shadow: 0 0 10px var(--secondary),
                 0 0 20px var(--secondary),
                 0 0 30px var(--primary),
                 0 0 40px var(--primary);
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px var(--secondary),
                     0 0 20px var(--secondary),
                     0 0 30px var(--primary),
                     0 0 40px var(--primary);
    }
    to {
        text-shadow: 0 0 15px var(--secondary),
                     0 0 25px var(--secondary),
                     0 0 35px var(--primary),
                     0 0 45px var(--primary),
                     0 0 55px var(--primary);
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 0, 255, 0.3);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.card-title {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, 
                rgba(0, 255, 157, 0.1) 0%, 
                transparent 70%);
    animation: pulse 4s infinite;
    opacity: 0;
    z-index: -1;
    border-radius: 15px;
}

@keyframes pulse {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.3; }
    100% { opacity: 0; transform: scale(1.1); }
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.values-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.highlight {
    color: var(--secondary);
    font-weight: bold;
}

/* Timeline holográfica */
.timeline-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background: rgba(10, 10, 26, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(110, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(110, 0, 255, 0.3);
}

.neon-subtitle {
    color: white;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.neon-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 3px;
    background: linear-gradient(to bottom, 
                var(--primary), 
                var(--secondary), 
                var(--primary));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 10px var(--primary);
}

.timeline-content {
    background: rgba(20, 20, 40, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
    margin-left: 30px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
}

.timeline-dot {
    position: absolute;
    left: 17px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

/* Equipo holográfico */
.team-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: rgba(20, 20, 40, 0.6);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.2);
}

.holographic-frame {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px var(--secondary);
}

.holographic-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(110, 0, 255, 0.2) 0%,
        rgba(0, 255, 157, 0.1) 50%,
        rgba(110, 0, 255, 0.2) 100%
    );
    animation: hologramEffect 6s infinite linear;
}

@keyframes hologramEffect {
    0% { opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { opacity: 0.3; }
}

.position {
    color: var(--secondary);
    font-style: italic;
    margin: 0.5rem 0;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .neon-text {
        font-size: 2rem;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-year {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}