:root {
    --primary: #641c74;
    --secondary: #28dc04;
    --dark: #0a0a1a;
    --darker: #050510;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark);
    color: var(--light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.h2{
    color: var(--secondary);
}


/* Neon Text Effect */
.neon-text {
    color: rgb(255, 255, 255);
    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);
}



/* Header Styles */
.main-header {
    background-color: rgb(104, 30, 117);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(131, 14, 185);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(110, 0, 255, 0.2);
    color: var(--secondary);
}

.nav-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(110, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(110, 0, 255, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    margin-top: 80px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(255, 255, 255);
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: rgba(20, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 0, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.1);
    border-color: var(--secondary);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Featured Plans */
.featured-plans {
    padding: 5rem 0;
    background-color: var(--dark);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background-color: rgba(20, 20, 40, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(110, 0, 255, 0.2);
}

.plan-card.featured {
    transform: scale(1.05);
    z-index: 1;
    border-color: var(--secondary);
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 5px 30px;
    font-weight: bold;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.plan-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to right, var(--primary), #8a2be2);
    color: white;
}

.plan-card.featured .plan-header {
    background: linear-gradient(to right, var(--secondary), #00cc88);
}

.plan-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.plan-price {
    margin-top: 1rem;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: bold;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-features {
    padding: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.plan-features li i {
    margin-right: 10px;
    color: var(--secondary);
}

.btn-plan {
    display: block;
    margin: 0 2rem 2rem;
    text-align: center;
    background-color: var(--primary);
    color: white;
}

.btn-plan:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

/* Footer Styles */
.main-footer {
    background-color: var(--darker);
    padding: 4rem 0 0;
    color: var(--light-gray);
}
.container1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-col h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 30px 0 0 30px;
}

.newsletter-form button {
    padding: 0 20px;
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 0 30px 30px 0;
    font-weight: bold;
    cursor: pointer;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
}

/* About Page Styles */
.about-section {
    padding: 100px 0 50px;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background-color: rgba(20, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.1);
    border-color: var(--secondary);
}

.card-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 30px;
}

.values-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-date {
    position: absolute;
    left: -50px;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: 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-color: rgba(20, 20, 40, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--secondary);
}

/* Team Section */
.team-section {
    margin-top: 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: rgba(20, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.3);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin: 1rem 0 0.5rem;
    color: var(--secondary);
}

.position {
    color: var(--gray);
    font-style: italic;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-card {
    background-color: rgba(66, 230, 16, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(60, 255, 0, 0.753);
}

.info-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin: 0 0 1rem;
    color: var(--secondary);
}

.contact-form {
    background-color: rgba(20, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h2 {
    margin-top: 0;
    color: var(--secondary);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid rgba(110, 0, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: rgb(95, 168, 88);
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Request Form Styles */
.request-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.request-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--secondary);
    color: var(--dark);
}

.step-title {
    font-size: 0.9rem;
    color: var(--gray);
}

.step.active .step-title {
    color: var(--secondary);
}

.request-form {
    background-color: rgba(20, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 10px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid rgba(110, 0, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn-next, .btn-prev {
    min-width: 120px;
}

.plans-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plan-option {
    position: relative;
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plan-option label {
    display: block;
    background-color: rgba(30, 30, 60, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.plan-option input[type="radio"]:checked + label {
    border-color: var(--secondary);
    background-color: rgba(0, 255, 157, 0.1);
}

.plan-option h3 {
    margin-top: 0;
    color: var(--secondary);
}

.plan-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: white;
}

.plan-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-option li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-container {
    background-color: rgba(30, 30, 60, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.summary-section {
    margin-bottom: 2rem;
}

.summary-section h3 {
    color: var(--secondary);
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.terms {
    display: flex;
    align-items: center;
}

.terms input {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .speedtest-results {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .nav-link {
        justify-content: center;
    }
    
    .header-cta {
        margin-top: 1rem;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .plans-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .speedtest-gauge {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .request-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .step-number {
        margin: 0 15px 0 0;
    }
    
    .request-steps::before {
        display: none;
    }
    
    .plans-selection {
        grid-template-columns: 1fr;
    }
}



/* Formulario de solicitud - Errores */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.error-message {
    color: #ff3860;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

input.error, select.error, textarea.error {
    border-color: #ff3860 !important;
}

input.error:focus, select.error:focus, textarea.error:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 56, 96, 0.25);
}

/* Pasos del formulario */
.request-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.request-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--secondary);
    color: var(--dark);
}

.step.completed .step-number {
    background-color: var(--primary);
}

.step-title {
    font-size: 0.9rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.step.active .step-title, .step.completed .step-title {
    color: white;
}

/* Form steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .request-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .step-number {
        margin: 0 15px 0 0;
    }
    
    .request-steps::before {
        display: none;
    }
}


/* Estilos para la sección de planes */
.plans-section {
    padding: 5rem 0;
    background-color: var(--darker);
}

.plans-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: rgba(110, 0, 255, 0.2);
    border: 1px solid var(--primary);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: white;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-select {
    padding: 0.5rem;
    background-color: rgba(20, 20, 40, 0.8);
    border: 1px solid var(--primary);
    color: white;
    border-radius: 5px;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background-color: rgba(20, 20, 40, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 0, 255, 0.3);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.1);
    border-color: var(--secondary);
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 5px 30px;
    font-weight: bold;
    transform: rotate(45deg);
    font-size: 0.8rem;
    z-index: 1;
}

.plan-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to right, var(--primary), #8a2be2);
    color: white;
    position: relative;
}

.plan-card.featured .plan-header {
    background: linear-gradient(to right, var(--secondary), #00cc88);
}

.plan-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.plan-price {
    margin-top: 1rem;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: bold;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-features {
    padding: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.plan-features li i {
    margin-right: 10px;
    color: var(--secondary);
}

.btn-plan {
    display: block;
    margin: 0 2rem 2rem;
    text-align: center;
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

/* Comparador de planes */
.plan-comparator {
    margin-top: 4rem;
    background-color: rgba(20, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
}

.plan-comparator h3 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background-color: rgba(110, 0, 255, 0.2);
    color: var(--secondary);
}

.comparison-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Modal de plan */
.plan-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    background-color: var(--darker);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--primary);
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    color: var(--secondary);
}

.modal-plan-details {
    margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .plans-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-options {
        justify-content: center;
    }
    
    .sort-options {
        justify-content: flex-end;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* ///////////////////////////////////////*/

/* Estilos generales del footer */
.main-footer {
    background: linear-gradient(135deg, #050510 0%, #050510 100%);
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-title {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #800080;
}

/* Estilos específicos para cada columna */
.footer-about .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #800080;
    transform: translateY(-3px);
}

.payment-methods {
    margin-top: 25px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Estilos para los menús de enlaces */
.footer-menu li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #00ff88;
    padding-left: 5px;
}

.footer-menu i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: #800080;
}

/* Estilos para la información de contacto */
.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-info i {
    margin-right: 12px;
    color: #800080;
    margin-top: 3px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #00ff88;
}

.emergency-contact {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    background: #ff0000;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.emergency-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Estilos para el newsletter */
.newsletter-text {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 25px;
}

.input-group {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.newsletter-btn {
    background: #800080;
    color: white;
    border: none;
    padding: 0 18px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #6a006a;
}

.form-message {
    margin-top: 10px;
    font-size: 0.9rem;
}


/* Estilos para el footer inferior */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: #00ff88;
}

/* Botón de WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Botón para volver arriba */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #800080;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 99;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #6a006a;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links, .payment-icons {
        justify-content: center;
    }
    
    .input-group {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 80px;
        right: 20px;
    }
}



/* Improved Payment Section Styles */
.payment-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(211, 19, 19, 0.08);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Pestañas */
.payment-tabs-container {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--secondary);
}

.payment-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.payment-tab {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #666;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.payment-tab .tab-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-tab .tab-icon img {
    max-width: 100%;
    max-height: 100%;
}

.payment-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    font-weight: 600;
}

.payment-tab:hover:not(.active) {
    color: var(--primary-color);
}

/* Contenido de pestañas */
.payment-content-container {
    padding: 1rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

/* Tarjetas de pago */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-card {
    background: var(--light-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(102, 105, 102);
}

.card-header {
    padding: 1.2rem;
    background-color: var(--gray-color);
    border-bottom: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header .header-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary);
}

.card-body {
    padding: 1.2rem;
}

/* Tarjeta de Banco */
.bank-method {
    display: flex;
    gap: 1.2rem;
}

.bank-logo {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 8px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-logo img {
    max-width: 100%;
    max-height: 100%;
}

.bank-info h4 {
    margin: 0 0 0.8rem 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.account-info {
    margin-bottom: 0.6rem;
}

.account-info label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.account-number, .account-cci {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.account-number:hover, .account-cci:hover {
    color: var(--secondary-color);
}

/* Tarjeta de Billetera Digital */
.digital-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.digital-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.digital-method:hover {
    border-color: var(--primary-color);
    background: rgba(110, 0, 255, 0.03);
}

.method-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-logo img {
    max-width: 100%;
    max-height: 100%;
}

.method-info h4 {
    margin: 0 0 0.2rem 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.method-number {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    cursor: pointer;
}

.method-name {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Tarjeta de Efectivo */
.cash-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--border-color);
}

.cash-method:last-child {
    border-bottom: none;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.method-icon img {
    max-width: 60%;
    max-height: 60%;
}

.method-details h4 {
    margin: 0 0 0.2rem 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.method-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Pie de tarjeta */
.card-footer {
    padding: 0.8rem 1.2rem;
    background: var(--gray-color);
    border-top: 1px solid var(--border-color);
}

.disclaimer, .comission {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Información Adicional */
.payment-additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    padding: 1.2rem;
    background: var(--gray-color);
    border-radius: 8px;
    border: 1px solid var(--secondary);
}

.info-card h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.info-card p {
    margin: 0.4rem 0;
    font-size: 0.9rem;
    color: #555;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .payment-tabs {
        flex-wrap: wrap;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .payment-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .bank-method {
        flex-direction: column;
    }
    
    .bank-logo {
        margin-bottom: 1rem;
    }
}


/* Estilos Sección Valor Agregado */
.value-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6e00ff, #00c853);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(110, 0, 255, 0.1);
    border-color: rgba(110, 0, 255, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.value-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.value-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}



/* Responsive */
@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .header-item, .row-item {
        grid-column: 1;
    }
    
    .feature-col {
        background: #f0f0f0;
        font-weight: 600;
        margin-top: 1rem;
    }
    
    .header-item:not(:first-child), 
    .row-item:not(:first-child) {
        border-top: 1px solid #eee;
    }
}






/* Estilos generales */
.tech-support-section {
    background-color: var(--dark);
    padding: 50px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Alerta de estado */
.status-alert {
    margin-bottom: 30px;
}

.alert {
    background: white;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.alert-icon {
    background: #f0f0f0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #4ec708;
    font-size: 1.3rem;
}

.alert-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.status {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status.operational {
    background: #e6f7ee;
    color: #28a745;
}

.alert-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Soluciones rápidas */
.quick-solutions {
    margin-bottom: 40px;
}

.solutions-title {
    color: #1cce3a;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solutions-title i {
    color: #0dca0d;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.solution-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-number {
    background: #800080;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.solution-content h4 {
    color: #1ce415;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.solution-steps {
    margin: 0;
    padding-left: 20px;
    color: #555;
}

.solution-steps li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contacto */
.contact-support {
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.contact-icon {
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info h4 {
    color: #22d31b;
    margin: 0 0 5px 0;
    font-size: 1.3rem;
}

.contact-info p {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 12px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Horario de atención */
.service-hours h3 {
    color: #32c925;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-hours h3 i {
    color: #36ce22;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.hour-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.hour-item h5 {
    color: #19cf19;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.hour-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .alert {
        flex-direction: column;
        text-align: center;
    }
    
    .alert-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .whatsapp-buttons {
        align-items: center;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .solution-cards {
        grid-template-columns: 1fr;
    }
}





/* Sección Liga1Max */
.liga-promo {
    position: relative;
    height: 80vh;
    min-height: 200px;
    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(15, 1, 19, 0.384) 0%, rgba(1, 7, 0, 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(79, 231, 8, 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: #20f304; /* Rojo de la bandera peruana */
    border: 2px solid #ffffff;
}

.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;
    }
}

/* menu moviles */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #1a2a4a, #0a1122);
            color: #fff;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Barra de navegación */
        .navbar {
            background: rgba(10, 17, 34, 0.95);
            backdrop-filter: blur(10px);
            padding: 0 20px;
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
            margin-right: 20px;
        }

        .logo h1 {
            font-size: 1.5rem;
            color: #3cff01;
            font-weight: 700;
        }

        /* Menú principal (oculto en móviles) */
        .main-nav {
            display: flex;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin: 0 5px;
        }

        .nav-link {
            color: #fff;
            text-decoration: none;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #35f106;
        }

        .nav-icon {
            width: 24px;
            text-align: center;
            margin-right: 8px;
            font-size: 18px;
        }

        .nav-text {
            font-weight: 500;
        }

        /* Menú hamburguesa (oculto en desktop) */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        /* Contenido de ejemplo */
        .content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-top: 30px;
        }

        .content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #16fc02;
        }

        .content p {
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Media Queries para móviles */
        @media (max-width: 768px) {
            .navbar {
                position: relative;
            }

            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(10, 17, 34, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: left 0.5s ease;
                z-index: 1000;
            }

            .main-nav.active {
                left: 0;
            }

            .main-nav ul {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }

            .nav-item {
                width: 100%;
                margin: 5px 0;
            }

            .nav-link {
                padding: 15px 20px;
                justify-content: flex-start;
            }

            /* Animación del menú hamburguesa */
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }
        }

        /* Estilos para la demostración */
        .demo-title {
            text-align: center;
            margin: 30px 0;
            color: #00f829;
        }

        .size-indicator {
            position: fixed;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            z-index: 1000;
        }

        @media (max-width: 768px) {
            .size-indicator::after {
                content: "Móvil (≤ 768px)";
            }
        }

        @media (min-width: 769px) {
            .size-indicator::after {
                content: "Escritorio (> 768px)";
            }
        }