: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;
}

.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);
}

.neon-text {
    animation: neonGlow 2s infinite alternate;
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color), 0 0 15px var(--primary-color);
}


/* Header Styles */
.main-header {
    background-color: rgba(100, 28, 116, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(134, 170, 140, 0.3);
}

.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);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 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(20, 20, 40, 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(0, 255, 157, 0.1);
}

.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: white;
    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);
}

/* SpeedTest Page Styles */
.speedtest-container {
    background-color: rgba(20, 20, 40, 0.8);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
}

.speedtest-gauge {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto 3rem;
}

#speedGauge {
    width: 100%;
    height: 100%;
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.gauge-value span {
    display: block;
}

#speedValue {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary);
}

.gauge-value .unit {
    font-size: 1.2rem;
    color: var(--gray);
}

.speedtest-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background-color: rgba(30, 30, 60, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    text-align: left;
}

.result-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    color: var(--secondary);
}

.result-content {
    flex: 1;
}

.result-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.result-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.result-bar {
    height: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    width: 0%;
    transition: width 1s ease;
}

.download .result-icon {
    color: #00ff9d;
}

.upload .result-icon {
    color: #6e00ff;
}

.ping .result-icon {
    color: #ff9900;
}

.test-status {
    margin-top: 1rem;
    font-style: italic;
    color: var(--gray);
}

.speedtest-info {
    margin-top: 3rem;
    text-align: left;
    padding: 2rem;
    background-color: rgba(30, 30, 60, 0.5);
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
}

.speedtest-info h3 {
    color: var(--secondary);
    margin-top: 0;
}

.speedtest-info ul {
    padding-left: 20px;
}

.speedtest-info li {
    margin-bottom: 0.5rem;
}

/* 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, #1a1a1a 0%, #2a0a3a 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: 12px;
    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 los botones de descarga de app */
.app-download {
    margin-top: 25px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.app-btn img {
    height: 40px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.app-btn:hover img {
    transform: scale(1.05);
}

/* 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;
    }
}


/* Estilos para la sección de pagos */
/* Estilos para la sección compacta */
.compact-payment-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Estilos para las pestañas */
.payment-tabs {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #ffffff;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: #800080;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00ff88;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

/* Estilos para los métodos de pago */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.method-card {
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#tituloh3 {
  color: #28dc04;
}

.method-header i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.method-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.method-details {
    margin: 0;
    padding-left: 35px;
}

.method-details li, 
.method-details p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

/* Colores para diferentes métodos */
.bank-method {
    background-color: #f0f7ff;
    border-left: 3px solid #0066cc;
}

.bank-method .method-header i {
    color: #0066cc;
}

.mobile-method {
    background-color: #f0fff4;
    border-left: 3px solid #25D366;
}

.mobile-method .method-header i {
    color: #25D366;
}

.office-method {
    background-color: #fff8f0;
    border-left: 3px solid #ff9800;
}

.office-method .method-header i {
    color: #ff9800;
}

/* Nota final */
.payment-note {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff3cd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.payment-note i {
    color: #ffc107;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        padding: 12px 20px;
    }
    
    .tab-btn.active::after {
        height: 100%;
        width: 3px;
        bottom: 0;
        left: 0;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
}