/* Estilos para la página de precios */
.precios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Pricing Cards */
.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Plan Centros Educativos - Estilo especial con color lila */
.pricing-card.educational-centers-special {
    border-color: #a855f7;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(147, 51, 234, 0.05));
}

.pricing-card.educational-centers-special:hover {
    border-color: #9333ea;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.pricing-card.educational-centers-special .discount-star {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.pricing-card.educational-centers-special .discount-star::before {
    background: linear-gradient(135deg, #c084fc, #a855f7);
}

.pricing-card.educational-centers-special .discount-star::after {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.pricing-card.educational-centers-special .final-price {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.1));
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.15);
}

.pricing-card.educational-centers-special .discounted-price {
    color: #9333ea;
    text-shadow: 0 2px 4px rgba(168, 85, 247, 0.3);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0 0.25rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.period {
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.min-students {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Discount Star */
.discount-star {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 1rem auto 0;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
    animation: starPulse 2s ease-in-out infinite;
    z-index: 1;
}

.discount-star::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;
}

.discount-star::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    border-radius: 50%;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    z-index: 1;
}

.star-text {
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 3;
    position: relative;
}

.star-percentage {
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 3;
    position: relative;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Promotion Badge (mantener para compatibilidad) */
.promotion-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Card Body */
.card-body {
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.features li:last-child {
    border-bottom: none;
}

/* Tax Note */
.tax-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    text-align: center;
}

/* Final Price */
.final-price {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-right: 1rem;
    opacity: 0.7;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

.per-student, .total {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

/* Student Selector */
.student-selector-container {
    margin: 1.5rem 0;
    text-align: center;
}

.student-selector-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.student-selector-input {
    width: 100px;
    padding: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.student-selector-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

/* Price Breakdown */
.price-breakdown {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    text-align: center;
}

.price-per-student {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.original-price-per-student {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 500;
}

/* Precio por alumno con descuento */
.price-per-student-discounted {
    text-align: center;
    margin: 1rem 0;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.price-label-discounted {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-value-discounted {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #9333ea;
    text-shadow: 0 2px 4px rgba(168, 85, 247, 0.3);
}

/* Example Pricing */
.example-pricing {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.example-pricing h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

/* Card Footer */
.card-footer {
    text-align: center;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Promotion Section */
.promotion-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    color: white;
}

.promotion-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promotion-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.highlight .icon {
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .precios-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .promotion-section {
        padding: 2rem 1rem;
    }
    
    .promotion-highlights {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .payment-methods-section h2 {
        font-size: 1.5rem;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .payment-method-item {
        padding: 0.75rem;
    }
    
    .payment-method-item svg {
        width: 48px;
        height: 30px;
    }
    
    .payment-method-item span {
        font-size: 0.75rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Countdown Timer */
.countdown-container {
    margin: 2rem 0;
}

.countdown-label {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    min-width: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label-small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    opacity: 0.8;
}

/* Calculator Section */
.calculator-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.calculator-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-input-group {
    margin-bottom: 2rem;
}

.calculator-input-group label {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.calculator-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.calculator-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calculator-slider-container {
    position: relative;
}

.calculator-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calculator-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.calculator-result-card {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.calculator-result-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.calculator-result-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.calculator-result-price {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

/* Ajustar colores según tema */
:root .calculator-result-price {
    color: #ffffff; /* Blanco en modo oscuro */
}

[data-theme="light"] .calculator-result-price {
    color: #000000; /* Negro en modo claro */
}

.calculator-result-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.calculator-result-savings {
    font-size: 0.875rem;
    color: #20c997;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Comparison Table */
.comparison-section {
    margin: 4rem 0;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.comparison-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.comparison-table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th:first-child {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: var(--bg-secondary);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table .featured-column {
    background: rgba(42, 20, 110, 0.05);
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    margin: 4rem 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.testimonial-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Ajustes de color según tema - Textos lilas/morados */
/* En modo oscuro: textos blancos */
:root .hero-title {
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* En modo claro: textos negros */
[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, #000000, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Section */
.contact-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.contact-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-option {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-option h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-option p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-btn {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.contact-cta {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Payment Methods Section */
.payment-methods-section {
    text-align: center;
    padding: 3rem 2rem;
    margin: 4rem 0;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.payment-methods-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.payment-methods-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.payment-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: default;
}

.payment-method-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.payment-method-item svg,
.payment-method-item img {
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    width: 56px;
    height: 35px;
    object-fit: contain;
}

.payment-method-item img.payment-method-icon {
    display: block;
}

.payment-method-item svg.payment-method-fallback {
    display: none;
}

.payment-method-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.25rem;
}

/* Modo oscuro - mejorar visibilidad de logos */
[data-theme="dark"] .payment-method-item img.payment-method-icon,
.dark-theme .payment-method-item img.payment-method-icon,
body.dark .payment-method-item img.payment-method-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

.payment-security-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 0.25rem;
    }
    
    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 1.75rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .calculator-section {
        padding: 2rem 1rem;
    }
    
    .calculator-section h2 {
        font-size: 2rem;
    }
    
    .comparison-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .comparison-table-container {
        overflow-x: scroll;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Estilos para modal de pago */
.pago-loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.pago-loading-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--text-primary);
}

.pago-loading-content .spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}