/* ===================================
   DavayPay - Styles CSS
   ================================== */

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.ruble-equivalent {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 500;
    margin-top: 0.25rem;
}

/**
protonmail
*/
.success-notification,
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

.success-notification {
    border-left: 4px solid #4CAF50;
}

.error-notification {
    border-left: 4px solid #ff6b6b;
}

.success-notification i:first-child {
    color: #4CAF50;
    font-size: 1.2rem;
}

.error-notification i:first-child {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.success-notification button,
.error-notification button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    margin-left: auto;
}

.success-notification button:hover,
.error-notification button:hover {
    background: #f0f0f0;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Estilos mejorados para formularios */
.form-group.required label::after {
    content: " *";
    color: #ff6b6b;
    font-weight: bold;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.protonmail-status {
    font-size: 0.9rem;
    color: #667eea;
    margin-top: 10px;
    padding: 10px;
    background: #f8f9ff;
    border-radius: 5px;
    border-left: 3px solid #667eea;
}
/* ===================================
   Header & Navigation
   ================================== */

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #667eea;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-dropdown {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    min-width: 150px;
    z-index: 1001;
    max-height: 250px;  /* Agregar esta línea */
    overflow-y: auto;   /* Agregar esta línea */
}

.language-options.active {
    display: block;
}

.language-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-option:hover {
    background: #f8f9fa;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===================================
   Main Content
   ================================== */

main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Sections */
.section {
    padding: 5rem 0;
    background: white;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* ===================================
   Products Section
   ================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.popular::before {
    content: var(--popular-text, 'Popular');
    position: absolute;
    top: 15px;
    right: -25px;
    background: #ff6b6b;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.product-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    color: #ff6b6b;
    font-weight: bold;
    margin: 1rem 0;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.features i {
    color: #4ecdc4;
    margin-right: 0.5rem;
    width: 20px;
}

.product-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: left;
}

.product-details h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.product-details p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Warning Banner */
.warning-banner {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.warning-banner h3 {
    color: #856404;
    margin-bottom: 0.5rem;
}

/* ===================================
   How It Works Section
   ================================== */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

/* ===================================
   Testimonials Section
   ================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

/* ===================================
   FAQ Section
   ================================== */

.faq-item {
    background: white;
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: #667eea;
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* ===================================
   Contact & Forms Section
   ================================== */

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.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: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Payment Section */
.payment-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.payment-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.selected-product {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.payment-method {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* ===================================
   Footer
   ================================== */

footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #667eea;
}

/* ===================================
   Utilities
   ================================== */

.hidden {
    display: none;
}

/* ===================================
   Responsive Design
   ================================== */

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Steps */
    .steps {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Payment methods */
    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 2rem;
    }

    /* Product cards */
    .product-card {
        padding: 1.5rem;
    }

    /* Forms */
    .contact-form {
        padding: 1.5rem;
    }

    /* FAQ */
    .faq-question {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}

/* ===================================
   CSS Variables for Dynamic Content
   ================================== */

:root {
    --popular-text: 'Popular';
}

/* ===================================
   Print Styles
   ================================== */

@media print {
    .hero,
    header,
    footer,
    .payment-section {
        display: none;
    }

    .section {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    body {
        background: white;
        color: black;
    }
}

/* ===================================
   Accessibility Enhancements
   ================================== */

/* Focus styles */
.cta-button:focus,
.nav-links a:focus,
.language-dropdown:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .product-card,
    .testimonial,
    .faq-item {
        border: 2px solid #333;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode */
    /*
    body {
        background: #1a1a1a;
        color: #e0e0e0;
    }

    .section {
        background: #2d2d2d;
    }

    .section:nth-child(even) {
        background: #333;
    }

    .product-card,
    .testimonial,
    .contact-form {
        background: #2d2d2d;
        color: #e0e0e0;
    }
    */
    
}

/* AÑADIR al final de styles.css */

/* Price details */
.price-detail {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Radio buttons styling */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.radio-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #667eea;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #667eea;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-option input[type="radio"]:checked ~ * {
    color: #667eea;
}

.radio-option i {
    font-size: 1.2rem;
    width: 24px;
}

/* Checkbox styling */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-container a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .radio-group {
        gap: 0.5rem;
    }
    
    .radio-option {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .radio-option i {
        font-size: 1rem;
        width: 20px;
    }
    
    .checkbox-container {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
}

/* AÑADIR al final de styles.css */

/* Legal Banner */
.legal-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 1rem 0;
    border-bottom: 3px solid rgba(255,255,255,0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.banner-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.banner-content p {
    margin: 0;
    line-height: 1.4;
}

.banner-content a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.banner-content a:hover {
    text-decoration: none;
}

/* Plans intro */
.plans-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: center;
}

.plans-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #495057;
}

/* What includes section */
.what-includes {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.what-includes h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    text-align: center;
}

.includes-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.includes-list i {
    color: #4ecdc4;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.exchange-notice {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.exchange-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #1565c0;
    font-style: italic;
}

/* Product cards improvements */
.ideal-for {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: left;
}

.ideal-for h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.ideal-for p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Service description */
.service-description {
    text-align: center;
    margin-bottom: 3rem;
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 15px;
}

.service-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    color: #1565c0;
}

/* Timing info */
.timing-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timing-info h3 {
    color: #667eea;
    text-align: center;
    margin-bottom: 2rem;
}

.timing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.timing-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #667eea;
}

.timing-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.timing-item span {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Privacy guarantee */
.privacy-guarantee {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.privacy-guarantee h3 {
    color: #2e7d32;
    text-align: center;
    margin-bottom: 1.5rem;
}

.privacy-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.privacy-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.privacy-list i {
    color: #4caf50;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Payment and recharge info */
.payment-info, .recharge-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-info h3, .recharge-info h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.payment-info p, .recharge-info p {
    line-height: 1.6;
    margin: 0;
    color: #495057;
}

/* Fees notice */
.fees-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.fees-notice p {
    margin: 0;
    color: #856404;
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .banner-content i {
        font-size: 1.2rem;
    }
    
    .plans-intro, .what-includes, .service-description {
        padding: 1.5rem;
    }
    
    .timing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timing-item {
        padding: 1rem;
    }
    
    .includes-list, .privacy-list {
        grid-template-columns: 1fr;
    }
    
    .payment-info, .recharge-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-banner {
        padding: 0.75rem 0;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .service-description p {
        font-size: 1rem;
    }
    
    .plans-intro p {
        font-size: 1rem;
    }
}

/* AÑADIR al final de styles.css */

/* ===================================
   Reload Section - Completely Different Design
   ================================== */

.reload-section {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.reload-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.reload-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.reload-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.reload-icon i {
    font-size: 3rem;
    color: white;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reload-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.reload-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.reload-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Reload Info */
.reload-info {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.reload-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.reload-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reload-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Reload Form */
.reload-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: #333;
}

.reload-form h3 {
    color: #4CAF50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.reload-form .form-group {
    margin-bottom: 1.5rem;
}

.reload-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2E7D32;
}

.reload-form input,
.reload-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.reload-form input:focus,
.reload-form select:focus {
    outline: none;
    border-color: #4CAF50;
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.help-text {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Radio buttons for reload */
.reload-form .radio-option {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.reload-form .radio-option:hover {
    border-color: #4CAF50;
    background: #f1f8e9;
}

.reload-form .radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #4CAF50;
}

.reload-form .radio-option input[type="radio"]:checked + .radio-custom::after {
    background: #4CAF50;
}

.reload-form .radio-option input[type="radio"]:checked ~ * {
    color: #4CAF50;
}

/* Commission info */
.reload-commission {
    background: #fff3e0;
    border: 2px solid #ffb74d;
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.commission-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f57c00;
}

.commission-info i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Reload CTA Button */
.reload-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.reload-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.4);
}

.reload-cta-button:active {
    transform: translateY(0);
}

/* Reload Features */
.reload-features {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

.reload-features h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Navigation update for reload section */
.nav-links a[href="#reload"] {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.nav-links a[href="#reload"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

/* Responsive design for reload section */
@media (max-width: 768px) {
    .reload-section {
        padding: 3rem 0;
    }
    
    .reload-hero h2 {
        font-size: 2.2rem;
    }
    
    .reload-hero p {
        font-size: 1.1rem;
    }
    
    .reload-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reload-info,
    .reload-form-container {
        padding: 2rem;
    }
    
    .reload-steps {
        gap: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .reload-icon {
        width: 80px;
        height: 80px;
    }
    
    .reload-icon i {
        font-size: 2.5rem;
    }
    
    .reload-hero h2 {
        font-size: 1.8rem;
    }
    
    .reload-info,
    .reload-form-container,
    .reload-features {
        padding: 1.5rem;
    }
    
    .reload-form h3 {
        font-size: 1.5rem;
    }
    
    .reload-cta-button {
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* AÑADIR al final de styles.css después de los estilos de recarga */

/* ===================================
   Reload Payment Section Styles
   ================================== */

.reload-payment-section {
    margin-top: 2rem;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reload-payment-container {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 3px solid #4CAF50;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.reload-payment-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32, #4CAF50);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.reload-payment-container h3 {
    color: #2E7D32;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Reload Summary */
.reload-summary {
    background: #f1f8e9;
    border: 2px solid #c8e6c9;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.reload-summary h4 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e8f5e8;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item span {
    color: #555;
    font-weight: 500;
}

.summary-item strong {
    color: #2E7D32;
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid #4CAF50;
    font-size: 1.2rem;
}

.summary-total span {
    color: #2E7D32;
    font-weight: bold;
}

.summary-total strong {
    color: #2E7D32;
    font-size: 1.5rem;
    font-weight: bold;
}

.summary-note {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1565c0;
    font-size: 0.9rem;
}

.summary-note i {
    color: #2196f3;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Reload Payment Methods */
.reload-payment-methods {
    margin-bottom: 2rem;
}

.reload-payment-methods h4 {
    color: #2E7D32;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.reload-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.reload-payment-method {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reload-payment-method:hover {
    border-color: #4CAF50;
    background: #f1f8e9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.reload-payment-method i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.reload-payment-method:hover i {
    color: #4CAF50;
}

.reload-payment-method span {
    display: block;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

/* Reload Pay Button */
.reload-pay-button {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.reload-pay-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.reload-pay-button:hover::before {
    left: 100%;
}

.reload-pay-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
}

.reload-pay-button:active {
    transform: translateY(-1px);
}

.reload-pay-button i {
    font-size: 1.2rem;
}

/* Responsive design for reload payment */
@media (max-width: 768px) {
    .reload-payment-container {
        padding: 2rem;
    }
    
    .reload-summary {
        padding: 1.5rem;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 1rem 0;
    }
    
    .summary-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 1.1rem;
    }
    
    .summary-total strong {
        font-size: 1.3rem;
    }
    
    .reload-payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .reload-payment-method {
        padding: 0.75rem;
    }
    
    .reload-payment-method i {
        font-size: 1.5rem;
    }
    
    .reload-pay-button {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .reload-payment-container {
        padding: 1.5rem;
    }
    
    .reload-payment-container h3 {
        font-size: 1.5rem;
    }
    
    .reload-summary h4 {
        font-size: 1.1rem;
    }
    
    .reload-payment-grid {
        grid-template-columns: 1fr;
    }
    
    .reload-pay-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .summary-note {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}
/* ===================================
   Purchase Section - Green Design
   ================================== */

.purchase-section {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.purchase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.purchase-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.purchase-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.purchase-icon i {
    font-size: 3rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.purchase-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.purchase-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.purchase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Purchase Info */
.purchase-info {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.purchase-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Selected Plan Display */
.selected-plan-display {
    margin-bottom: 2rem;
}

.plan-display-card {
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
}

.plan-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.plan-net {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-style: italic;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.plan-features i {
    color: #4CAF50;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.purchase-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.purchase-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Purchase Form */
.purchase-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: #333;
}

.purchase-form h3 {
    color: #4CAF50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.purchase-form .form-group {
    margin-bottom: 1.5rem;
}

.purchase-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2E7D32;
}

.purchase-form input,
.purchase-form select,
.purchase-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.purchase-form input:focus,
.purchase-form select:focus,
.purchase-form textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.readonly-input {
    background: #f0f0f0 !important;
    color: #666;
    font-weight: 600;
    cursor: not-allowed;
}

.help-text {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.country-code-select {
    flex: 0 0 200px;  /* Aumentado de 140px a 200px */
    font-size: 0.85rem;  /* Reducido ligeramente el texto */
}

.phone-input-group input {
    flex: 1;
}

/* Radio buttons for purchase */
.purchase-form .radio-option {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.purchase-form .radio-option:hover {
    border-color: #4CAF50;
    background: #f1f8e9;
}

.purchase-form .radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #4CAF50;
}

.purchase-form .radio-option input[type="radio"]:checked + .radio-custom::after {
    background: #4CAF50;
}

.purchase-form .radio-option input[type="radio"]:checked ~ * {
    color: #4CAF50;
}

/* Delivery Section */
.delivery-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #e9ecef;
}

.delivery-section h4 {
    color: #4CAF50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.address-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

/* Terms Section */
.terms-section {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #c8e6c9;
}

.terms-section h4 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.terms-content .form-group {
    margin-bottom: 1rem;
}

.jurisdiction-warning {
    background: #fff3e0;
    border: 2px solid #ffb74d;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f57c00;
    font-size: 0.9rem;
}

.jurisdiction-warning i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.jurisdiction-warning a {
    color: #ef6c00;
    font-weight: bold;
}

/* Purchase CTA Button */
.purchase-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.purchase-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.purchase-cta-button:hover::before {
    left: 100%;
}

.purchase-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
}

.purchase-cta-button:active {
    transform: translateY(-1px);
}

.purchase-cta-button i {
    font-size: 1.2rem;
}

/* Responsive design for purchase section */
@media (max-width: 768px) {
    .purchase-section {
        padding: 3rem 0;
    }
    
    .purchase-hero h2 {
        font-size: 2.2rem;
    }
    
    .purchase-hero p {
        font-size: 1.1rem;
    }
    
    .purchase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .purchase-info,
    .purchase-form-container {
        padding: 2rem;
    }
    
    .purchase-steps {
        gap: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .phone-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .country-code-select {
        flex: none;
    }
    
    .address-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .delivery-section,
    .terms-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .purchase-icon {
        width: 80px;
        height: 80px;
    }
    
    .purchase-icon i {
        font-size: 2.5rem;
    }
    
    .purchase-hero h2 {
        font-size: 1.8rem;
    }
    
    .purchase-info,
    .purchase-form-container {
        padding: 1.5rem;
    }
    
    .purchase-form h3 {
        font-size: 1.5rem;
    }
    
    .purchase-cta-button {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    .delivery-section,
    .terms-section {
        padding: 1rem;
    }
    
    .jurisdiction-warning {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}
/* ===================================
   Contact Section - Nuevo diseño
   ================================== */

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #667eea;
}

.contact-form h3 {
    color: #667eea;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.help-text {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Radio group horizontal */
.radio-group.horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.radio-group.horizontal .radio-option {
    justify-content: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
}

/* Contact CTA Button */
.contact-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.contact-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contact-cta-button:active {
    transform: translateY(0);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-info-grid h3 {
    color: #667eea;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    border-left: 4px solid #667eea;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Contact Note */
.contact-note {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #2196f3;
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.note-content i {
    font-size: 1.5rem;
    color: #2196f3;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.note-content h4 {
    color: #1565c0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.note-content p {
    color: #1565c0;
    line-height: 1.6;
    margin: 0;
}

/* Quick FAQ */
.quick-faq {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
}

.quick-faq h3 {
    color: #667eea;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.3;
}

.faq-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .radio-group.horizontal {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info-grid {
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.25rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-faq {
        padding: 2rem 1.5rem;
    }
    
    .note-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .contact-cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-card h4 {
        font-size: 1rem;
    }
    
    .contact-card p {
        font-size: 0.85rem;
    }
    
    .quick-faq h3 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
}

/* Selected Plan Display - ACTUALIZAR */
.selected-plan-display {
    margin-bottom: 2rem;
}

.plan-display-card {
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
}

.plan-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.plan-net {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-style: italic;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-align: left;
}

.plan-features div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features i {
    color: #4CAF50;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.purchase-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.purchase-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.purchase-icon i {
    font-size: 3rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.purchase-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.purchase-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.purchase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Purchase Info */
.purchase-info {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.purchase-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Selected Plan Display */
.selected-plan-display {
    margin-bottom: 2rem;
}

.plan-display-card {
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
}

.plan-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.plan-net {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-style: italic;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.plan-features i {
    color: #4CAF50;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.purchase-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.purchase-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Purchase Form */
.purchase-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: #333;
}

.purchase-form h3 {
    color: #4CAF50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.purchase-form .form-group {
    margin-bottom: 1.5rem;
}

.purchase-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2E7D32;
}

.purchase-form input,
.purchase-form select,
.purchase-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.purchase-form input:focus,
.purchase-form select:focus,
.purchase-form textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.readonly-input {
    background: #f0f0f0 !important;
    color: #666;
    font-weight: 600;
    cursor: not-allowed;
}

.help-text {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.country-code-select {
    flex: 0 0 200px;  /* Aumentado de 140px a 200px */
    font-size: 0.85rem;  /* Reducido ligeramente el texto */
}

.phone-input-group input {
    flex: 1;
}

/* Radio buttons for purchase */
.purchase-form .radio-option {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.purchase-form .radio-option:hover {
    border-color: #4CAF50;
    background: #f1f8e9;
}

.purchase-form .radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #4CAF50;
}

.purchase-form .radio-option input[type="radio"]:checked + .radio-custom::after {
    background: #4CAF50;
}

.purchase-form .radio-option input[type="radio"]:checked ~ * {
    color: #4CAF50;
}

/* Delivery Section */
.delivery-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #e9ecef;
}

.delivery-section h4 {
    color: #4CAF50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.address-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

/* Terms Section */
.terms-section {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #c8e6c9;
}

.terms-section h4 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.terms-content .form-group {
    margin-bottom: 1rem;
}

.jurisdiction-warning {
    background: #fff3e0;
    border: 2px solid #ffb74d;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f57c00;
    font-size: 0.9rem;
}

.jurisdiction-warning i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.jurisdiction-warning a {
    color: #ef6c00;
    font-weight: bold;
}

/* Purchase CTA Button */
.purchase-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.purchase-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.4);
}

.purchase-cta-button:active {
    transform: translateY(0);
}

.purchase-cta-button i {
    font-size: 1.2rem;
}

/* Purchase Features */
.purchase-features {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

.purchase-features h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Responsive design for purchase section */
@media (max-width: 768px) {
    .purchase-section {
        padding: 3rem 0;
    }
    
    .purchase-hero h2 {
        font-size: 2.2rem;
    }
    
    .purchase-hero p {
        font-size: 1.1rem;
    }
    
    .purchase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .purchase-info,
    .purchase-form-container {
        padding: 2rem;
    }
    
    .purchase-steps {
        gap: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .phone-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .country-code-select {
        flex: none;
    }
    
    .address-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .delivery-section,
    .terms-section {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .purchase-icon {
        width: 80px;
        height: 80px;
    }
    
    .purchase-icon i {
        font-size: 2.5rem;
    }
    
    .purchase-hero h2 {
        font-size: 1.8rem;
    }
    
    .purchase-info,
    .purchase-form-container,
    .purchase-features {
        padding: 1.5rem;
    }
    
    .purchase-form h3 {
        font-size: 1.5rem;
    }
    
    .purchase-cta-button {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .delivery-section,
    .terms-section {
        padding: 1rem;
    }
    
    .jurisdiction-warning {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* Checkbox styling - REEMPLAZAR la sección existente */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.4;
    position: relative;
    padding: 0.5rem 0;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.checkbox-container span:last-child {
    cursor: pointer;
    user-select: none;
}

.checkbox-container a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

/* Específicos para formularios de compra */
.purchase-form .checkbox-container .checkmark,
.terms-section .checkbox-container .checkmark {
    border-color: #4CAF50;
}

.purchase-form .checkbox-container .checkmark:hover,
.terms-section .checkbox-container .checkmark:hover {
    border-color: #388e3c;
    background: #f1f8e9;
}

.purchase-form .checkbox-container input[type="checkbox"]:checked + .checkmark,
.terms-section .checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

/* Focus para accessibility */
.checkbox-container input[type="checkbox"]:focus + .checkmark {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .checkbox-container {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .checkmark {
        width: 20px;
        height: 20px;
    }
    
    .checkbox-container input[type="checkbox"]:checked + .checkmark::after {
        font-size: 14px;
    }
}
/* Estilos para resultados de pago */
.payment-result {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
}

.payment-result.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.payment-result.fail {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.payment-result.pending {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.result-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.result-content p {
    margin: 5px 0;
    font-size: 14px;
}
/* ===================================
   ESTILOS ADICIONALES PARA STRIPE
   ================================== */

/* Visualización del plan seleccionado */
.plan-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffd700;
}

.plan-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Estados de validación de campos */
.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input.is-valid::after {
    content: '✓';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-weight: bold;
}

/* Mensajes de error y alerta */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.alert i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Botón de procesamiento */
.purchase-form button[type="submit"] {
    position: relative;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.purchase-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

.purchase-form button[type="submit"] .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mejoras visuales para el formulario */
.purchase-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.purchase-form h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
}

.purchase-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Campo de solo lectura */
.readonly-input {
    background-color: #f8f9fa !important;
    color: #6c757d;
    border-color: #dee2e6;
    cursor: default;
    font-weight: 500;
}

.readonly-input:focus {
    box-shadow: none !important;
    border-color: #dee2e6 !important;
}

/* Animación suave para mostrar secciones */
#purchase {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

#purchase.show {
    opacity: 1;
    transform: translateY(0);
}

/* Indicador de paso activo */
.purchase-step {
    transition: all 0.3s ease;
}

.purchase-step.active {
    background-color: #f8f9ff;
    border-left: 4px solid #667eea;
    padding-left: 16px;
}

.purchase-step.active .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .plan-summary {
        padding: 15px;
    }
    
    .plan-name {
        font-size: 1.2rem;
    }
    
    .plan-price {
        font-size: 1.6rem;
    }
    
    .purchase-form {
        padding: 20px;
        margin: 0 10px;
    }
    
    .alert {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Loading overlay (opcional) */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.loading-spinner i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
}

.loading-spinner p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
}

/* Animación para botones de productos */
.product-card .cta-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.product-card .cta-button:active {
    transform: translateY(0);
}

/* Success indicators */
.success-indicator {
    color: #28a745;
    font-size: 1.2rem;
    margin-left: 8px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.success-indicator.show {
    opacity: 1;
    transform: scale(1);
}
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
}

.security-info {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #28a745;
}

.security-info i {
    color: #28a745;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        margin-bottom: 15px;
    }
}

.cta-button.selected {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.is-valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

#purchase {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

#purchase.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 
   SOLUCIÓN TEMPORAL - Añadir al FINAL de styles.css
   Esto sobrescribe cualquier regla que oculte la sección de compra
*/

/* FORZAR VISUALIZACIÓN DE SECCIÓN DE COMPRA */
#purchase {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: all 0.5s ease !important;
}

/* Por si usa clases adicionales */
#purchase.purchase-section {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Estado mostrado */
#purchase.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Asegurar que el contenedor también es visible */
#purchase .container {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===================================
   CORRECCIONES CSS PARA SECCIÓN DE COMPRA
   ================================== */

/* COMPORTAMIENTO CORRECTO: La sección debe estar oculta por defecto */
#purchase {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    visibility: hidden;
}

/* Solo mostrar cuando tenga la clase 'show' */
#purchase.show {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Asegurar que NO se muestre con la clase 'hidden' */
#purchase.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ===================================
   CORRECCIÓN DE COLORES - MANTENER VERDE
   ================================== */

/* El lado izquierdo (display del plan) debe mantener el color verde */
.purchase-info,
.selected-plan-display,
#selected-plan-display {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
    color: white !important;
}

/* El formulario (lado derecho) debe mantener su color original */
.purchase-form-container,
.purchase-form {
    background: white !important;
    color: #333 !important;
}

/* NO cambiar colores al seleccionar plan */
.purchase-section.plan-selected .purchase-info {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
}

.purchase-section.plan-selected .purchase-form-container {
    background: white !important;
}

/* ===================================
   PLAN DISPLAY CARD - VERDE SIEMPRE
   ================================== */

.plan-display-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
}

.plan-display-card .plan-name {
    font-size: 1.8rem !important;
    font-weight: bold !important;
    color: white !important;
    margin-bottom: 1rem !important;
}

.plan-display-card .plan-price {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #90EE90 !important;
    margin-bottom: 0.5rem !important;
}

.plan-display-card .plan-net {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 1.5rem !important;
    font-style: italic !important;
}

.plan-display-card .plan-features {
    text-align: left !important;
}

.plan-display-card .plan-features div {
    color: white !important;
    margin-bottom: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
}

.plan-display-card .plan-features i {
    color: #90EE90 !important;
    margin-right: 0.5rem !important;
    font-size: 1.1rem !important;
}

/* ===================================
   BOTONES SELECCIONADOS - VISUAL FEEDBACK
   ================================== */

.cta-button.selected {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.5) !important;
    border: 2px solid #fff !important;
    position: relative !important;
}

.cta-button.selected::after {
    content: '✓ Seleccionado';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #28a745;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ===================================
   PREVENIR CAMBIOS DE COLOR NO DESEADOS
   ================================== */

/* Sobrescribir cualquier estilo que cambie los colores automáticamente */
.purchase-section:not(.force-color-change) .purchase-info {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
}

.purchase-section:not(.force-color-change) .purchase-form-container {
    background: white !important;
}

/* ===================================
   ANIMACIONES SUAVES
   ================================== */

/* Animación de entrada para la sección de compra */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#purchase.show {
    animation: slideInUp 0.6s ease-out !important;
}

/* Animación para el plan seleccionado */
.plan-display-card {
    animation: planSelected 0.5s ease-out;
}

@keyframes planSelected {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   RESPONSIVE - MANTENER COMPORTAMIENTO
   ================================== */

@media (max-width: 768px) {
    #purchase {
        display: none !important;
    }
    
    #purchase.show {
        display: block !important;
    }
    
    .plan-display-card .plan-name {
        font-size: 1.4rem !important;
    }
    
    .plan-display-card .plan-price {
        font-size: 2.2rem !important;
    }
    
    .cta-button.selected::after {
        top: -8px;
        right: -8px;
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

/* ===================================
   DEBUG - SOLO PARA DESARROLLO
   ================================== */

/* Añadir borde de debug (remover en producción) */
#purchase.debug {
    border: 3px dashed red !important;
    position: relative;
}

#purchase.debug::before {
    content: 'SECCIÓN DE COMPRA - DEBUG MODE';
    position: absolute;
    top: -30px;
    left: 0;
    background: red;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1000;
}

/* ===================================
   CORRECCIONES ESPECÍFICAS ADICIONALES
   ================================== */

/* Asegurar que los inputs readonly mantengan su estilo */
.purchase-form input[readonly] {
    background: #f8f9fa !important;
    color: #6c757d !important;
    cursor: default !important;
    border: 1px solid #dee2e6 !important;
}

/* El botón de submit debe mantener su color verde */
.purchase-form button[type="submit"] {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
    color: white !important;
}

.purchase-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #45a049 0%, #2d5a30 100%) !important;
    transform: translateY(-2px) !important;
}

/* Prevenir que otros scripts cambien estos estilos */
.purchase-section * {
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* Forzar que el display del plan siempre sea verde */
[id*="selected-plan-display"],
[class*="selected-plan-display"],
[class*="plan-display"] {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
    color: white !important;
}

/* ===================================
   LOADING OVERLAY MEJORADO
   ================================== */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    width: 90%;
}

.loading-spinner i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===================================
   IMPORTANTE: SOBRESCRIBIR ESTILOS EXISTENTES
   ================================== */

/* Esta regla sobrescribe cualquier otro estilo que pueda afectar */
body #purchase {
    display: none !important;
}

body #purchase.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Asegurar que no haya conflictos con otros frameworks CSS */
.purchase-section {
    contain: layout style !important;
}

/* ===================================
   NOTA DE IMPLEMENTACIÓN
   ================================== */

/*
INSTRUCCIONES DE USO:

1. Añadir este CSS al final de tu archivo styles.css
2. La sección #purchase estará oculta por defecto
3. Solo se mostrará cuando tenga la clase 'show'
4. Los colores se mantendrán: verde para el lado izquierdo, blanco para el formulario
5. Las animaciones serán suaves y profesionales

COMPORTAMIENTO ESPERADO:
- Al cargar la página: sección oculta
- Al seleccionar un plan: sección se muestra con animación suave
- Colores consistentes: verde (izquierda) + blanco (derecha)
- Sin logs de depuración en consola
*/

/* ===================================
   CORRECCIONES CSS PARA SECCIÓN DE COMPRA
   ================================== */

/* COMPORTAMIENTO CORRECTO: La sección debe estar oculta por defecto */
#purchase {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    visibility: hidden;
}

/* Solo mostrar cuando tenga la clase 'show' */
#purchase.show {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Asegurar que NO se muestre con la clase 'hidden' */
#purchase.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ===================================
   CORRECCIÓN DE COLORES - MANTENER VERDE
   ================================== */

/* El lado izquierdo (display del plan) debe mantener el color verde */
.purchase-info,
.selected-plan-display,
#selected-plan-display {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
    color: white !important;
}

/* El formulario (lado derecho) debe mantener su color original */
.purchase-form-container,
.purchase-form {
    background: white !important;
    color: #333 !important;
}

/* NO cambiar colores al seleccionar plan */
.purchase-section.plan-selected .purchase-info {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
}

.purchase-section.plan-selected .purchase-form-container {
    background: white !important;
}

/* ===================================
   PLAN DISPLAY CARD - VERDE SIEMPRE
   ================================== */

.plan-display-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
}

.plan-display-card .plan-name {
    font-size: 1.8rem !important;
    font-weight: bold !important;
    color: white !important;
    margin-bottom: 1rem !important;
}

.plan-display-card .plan-price {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #90EE90 !important;
    margin-bottom: 1rem !important;
}

.plan-display-card .plan-description {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
    font-style: italic !important;
}

.plan-display-card .plan-net {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 1.5rem !important;
    font-style: italic !important;
}

.plan-display-card .plan-features {
    text-align: left !important;
}

.plan-display-card .plan-features div {
    color: white !important;
    margin-bottom: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
}

.plan-display-card .plan-features i {
    color: #90EE90 !important;
    margin-right: 0.5rem !important;
    font-size: 1.1rem !important;
}

/* ===================================
   BOTONES SELECCIONADOS - VISUAL FEEDBACK
   ================================== */

.cta-button.selected {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.5) !important;
    border: 2px solid #fff !important;
    position: relative !important;
}

.cta-button.selected::after {
    content: '✓ Seleccionado';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #28a745;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ===================================
   PREVENIR CAMBIOS DE COLOR NO DESEADOS
   ================================== */

/* Sobrescribir cualquier estilo que cambie los colores automáticamente */
.purchase-section:not(.force-color-change) .purchase-info {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
}

.purchase-section:not(.force-color-change) .purchase-form-container {
    background: white !important;
}

/* ===================================
   ANIMACIONES SUAVES
   ================================== */

/* Animación de entrada para la sección de compra */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#purchase.show {
    animation: slideInUp 0.6s ease-out !important;
}

/* Animación para el plan seleccionado */
.plan-display-card {
    animation: planSelected 0.5s ease-out;
}

@keyframes planSelected {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   RESPONSIVE - MANTENER COMPORTAMIENTO
   ================================== */

@media (max-width: 768px) {
    #purchase {
        display: none !important;
    }
    
    #purchase.show {
        display: block !important;
    }
    
    .plan-display-card .plan-name {
        font-size: 1.4rem !important;
    }
    
    .plan-display-card .plan-price {
        font-size: 2.2rem !important;
    }
    
    .cta-button.selected::after {
        top: -8px;
        right: -8px;
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

/* ===================================
   DEBUG - SOLO PARA DESARROLLO
   ================================== */

/* Añadir borde de debug (remover en producción) */
#purchase.debug {
    border: 3px dashed red !important;
    position: relative;
}

#purchase.debug::before {
    content: 'SECCIÓN DE COMPRA - DEBUG MODE';
    position: absolute;
    top: -30px;
    left: 0;
    background: red;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1000;
}

/* ===================================
   CORRECCIONES ESPECÍFICAS ADICIONALES
   ================================== */

/* Asegurar que los inputs readonly mantengan su estilo */
.purchase-form input[readonly] {
    background: #f8f9fa !important;
    color: #6c757d !important;
    cursor: default !important;
    border: 1px solid #dee2e6 !important;
}

/* El botón de submit debe mantener su color verde */
.purchase-form button[type="submit"] {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
    color: white !important;
}

.purchase-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #45a049 0%, #2d5a30 100%) !important;
    transform: translateY(-2px) !important;
}

/* Prevenir que otros scripts cambien estos estilos */
.purchase-section * {
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* Forzar que el display del plan siempre sea verde */
[id*="selected-plan-display"],
[class*="selected-plan-display"],
[class*="plan-display"] {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
    color: white !important;
}

/* ===================================
   LOADING OVERLAY MEJORADO
   ================================== */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    width: 90%;
}

.loading-spinner i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===================================
   IMPORTANTE: SOBRESCRIBIR ESTILOS EXISTENTES
   ================================== */

/* Esta regla sobrescribe cualquier otro estilo que pueda afectar */
body #purchase {
    display: none !important;
}

body #purchase.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Asegurar que no haya conflictos con otros frameworks CSS */
.purchase-section {
    contain: layout style !important;
}

/* ===================================
   NOTA DE IMPLEMENTACIÓN
   ================================== */

/*
INSTRUCCIONES DE USO:

1. Añadir este CSS al final de tu archivo styles.css
2. La sección #purchase estará oculta por defecto
3. Solo se mostrará cuando tenga la clase 'show'
4. Los colores se mantendrán: verde para el lado izquierdo, blanco para el formulario
5. Las animaciones serán suaves y profesionales

COMPORTAMIENTO ESPERADO:
- Al cargar la página: sección oculta
- Al seleccionar un plan: sección se muestra con animación suave
- Colores consistentes: verde (izquierda) + blanco (derecha)
- Sin logs de depuración en consola
*/