/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover {
    color: #0066ff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 20px;
}

section {
    padding: 100px 5%;
    position: relative;
}

/* Botones */
.btn-primary, .btn-reservar, .btn-search, .btn-script, .btn-secondary, .btn-pricing, .btn-cta {
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover, .btn-reservar:hover, .btn-search:hover, .btn-script:hover, .btn-secondary:hover, .btn-pricing:hover, .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.btn-primary:before, .btn-reservar:before, .btn-search:before, .btn-script:before, .btn-secondary:before, .btn-pricing:before, .btn-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover:before, .btn-reservar:hover:before, .btn-search:hover:before, .btn-script:hover:before, .btn-secondary:hover:before, .btn-pricing:hover:before, .btn-cta:hover:before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: #0066ff;
    border: 2px solid #0066ff;
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
}

.btn-script {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
}

.btn-pricing {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
}

.btn-pricing.featured {
    background: linear-gradient(90deg, #ff6b00, #ff9500);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.btn-pricing.featured:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.btn-cta {
    font-size: 18px;
    padding: 16px 32px;
    margin-top: 30px;
    background: linear-gradient(90deg, #ff6b00, #ff9500);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.btn-cta:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

/* Barra de navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
}

.hero-section:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #f8f9fa, transparent);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Sección de estadísticas */
.stats-section {
    margin-top: -100px;
    padding-top: 0;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Sección de scripts */
.scripts-section {
    background-color: white;
}

.scripts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.script-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    padding: 30px;
    position: relative;
}

.script-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.script-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 198, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.script-icon i {
    font-size: 28px;
    color: #0066ff;
}

.script-info {
    flex: 1;
}

.script-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #222;
}

.script-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.script-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.script-features span {
    font-size: 14px;
    color: #555;
    background-color: #f5f7fa;
    padding: 6px 12px;
    border-radius: 20px;
}

.script-features span i {
    color: #0066ff;
    margin-right: 5px;
}

.view-more {
    text-align: center;
    margin-top: 50px;
}

/* Sección de beneficios */
.benefits-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.benefits-section:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 198, 255, 0.05));
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 0;
}

.benefits-section:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 149, 0, 0.05));
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 198, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 32px;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Sección de testimonios */
.testimonials-section {
    background-color: white;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(0, 102, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid rgba(0, 102, 255, 0.1);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #222;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

.testimonial-metrics {
    display: flex;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.metric {
    flex: 1;
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: #666;
}

/* Sección de precios */
.pricing-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
    border: 2px solid rgba(0, 102, 255, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #ff6b00, #ff9500);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #0066ff;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #666;
    margin-left: 5px;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #555;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 16px;
}

.pricing-features li i.fa-check {
    color: #0066ff;
}

.pricing-features li i.fa-times {
    color: #ccc;
}

.pricing-features li.disabled {
    color: #aaa;
}

/* Sección de llamado a la acción */
.cta-section {
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    color: white;
    text-align: center;
    padding: 80px 5%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Sección de preguntas frecuentes */
.faq-section {
    background-color: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: white;
}

.faq-question {
    padding: 20px 30px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #0066ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 80px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-column p {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    bottom: -10px;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #0066ff;
}

.contact-info li {
    display: flex;
    align-items: center;
    color: #aaa;
}

.contact-info li i {
    margin-right: 10px;
    color: #0066ff;
}

.newsletter h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(90deg, #005ce6, #00b3e6);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .scripts-container, .benefits-container, .testimonials-container, .pricing-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 5%;
    }
    
    .nav-links {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .stats-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .script-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .script-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .script-features {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .scripts-container, .benefits-container,