/* Reset y Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Classes */
.green { color: #16a34a; }
.purple { color: #9333ea; }
.blue { color: #2563eb; }
.orange { color: #ea580c; }
.yellow { color: #eab308; }
.red { color: #dc2626; }

.gradient-text {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.badge.orange {
    background: #ea580c;
    color: white;
}

.badge.green {
    background: #16a34a;
    color: white;
}

.badge.purple {
    background: #9333ea;
    color: white;
}

.badge.blue {
    background: #2563eb;
    color: white;
}

.badge.outline {
    background: transparent;
    border: 2px solid;
}

.badge.outline.blue {
    border-color: #2563eb;
    color: #2563eb;
}

.badge.outline.green {
    border-color: #16a34a;
    color: #16a34a;
}

.badge.outline.orange {
    border-color: #ea580c;
    color: #ea580c;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.btn-green {
    background: #16a34a;
    color: white;
}

.btn-green:hover {
    background: #15803d;
}

.btn-purple {
    background: #9333ea;
    color: white;
}

.btn-purple:hover {
    background: #7c3aed;
}

.btn-blue {
    background: #2563eb;
    color: white;
}

.btn-blue:hover {
    background: #1d4ed8;
}

.btn-whatsapp {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #92400e;
    padding: 12px 24px;
    width: auto;
}

.btn-whatsapp:hover {
    background: #fde68a;
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* Header */
.header {
    background: white;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.header-content {
    text-align: center;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 24px 0;
    color: #1f2937;
}

.subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.highlight {
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border-color: #16a34a;
}

.pricing-card.flexible {
    border-color: #9333ea;
}

.popular-badge, .flexible-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.price-info {
    margin-bottom: 24px;
}

.old-price {
    font-size: 1.125rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.discount {
    font-weight: 600;
    margin-bottom: 4px;
}

.savings, .total, .installments {
    font-size: 0.875rem;
    color: #6b7280;
}

.features {
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature i {
    font-size: 1.25rem;
}

.whatsapp-contact {
    text-align: center;
    margin-top: 32px;
}

/* Trading BOT Section */
.trading-bot-section {
    background: white;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 16px 0;
    color: #1f2937;
}

.info-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 16px auto 0;
}

.section-subtitle.bold {
    font-weight: 700;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-header i {
    font-size: 1.5rem;
}

.feature-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item i {
    font-size: 1.25rem;
    margin-top: 2px;
}

.feature-item h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

.functionality-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.functionality-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.functionality-item i {
    font-size: 1.25rem;
}

/* Eagle Section */
.eagle-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: 80px 0;
}

.eagle-story {
    background: linear-gradient(135deg, #fef9e7 0%, #fed7aa 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 32px;
    margin: 48px auto;
    max-width: 800px;
    text-align: center;
}

.eagle-story h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.eagle-story p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.7;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ea580c;
    text-align: center;
}

.seminar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.seminar-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.seminar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.seminar-header i {
    font-size: 1.5rem;
}

.seminar-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.seminar-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seminar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.seminar-item i {
    font-size: 1.25rem;
    margin-top: 2px;
}

.seminar-item h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.seminar-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-item i {
    font-size: 1.25rem;
}

.eagle-footer {
    text-align: center;
    margin-top: 48px;
}

.eagle-footer p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 8px;
}

.eagle-footer .highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ea580c;
}

/* PAM Section */
.pam-section {
    background: white;
    padding: 80px 0;
}

.pam-card {
    background: white;
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pam-icon {
    margin-bottom: 24px;
}

.pam-icon i {
    font-size: 4rem;
    color: #eab308;
}

.pam-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.pam-card p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 24px;
}

.pam-disclaimer {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
}

.pam-disclaimer p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Testimonials Section */
.testimonials-section {
    background: #f9fafb;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.testimonial-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.testimonial-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    color: white;
    padding: 80px 0;
}

.cta-header {
    text-align: center;
    margin-bottom: 48px;
}

.cta-header i {
    font-size: 4rem;
    margin-bottom: 24px;
}

.cta-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-header p {
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 32px auto;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: #1f2937;
    text-align: center;
}

.benefit i {
    color: #4ade80;
    font-size: 1.25rem;
}

.final-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card.final {
    background: white;
    color: #1f2937;
}

.whatsapp-contact.final {
    text-align: center;
    margin-top: 32px;
}

.important-notice {
    text-align: center;
    margin-top: 48px;
}

.notice-content {
    background: #fef3c7;
    color: #92400e;
    padding: 24px;
    border-radius: 12px;
    display: inline-block;
}

.notice-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.notice-text {
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 32px 0;
    text-align: center;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-subtitle {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .seminar-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .final-pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px;
    }
    
    .info-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .pricing-card,
    .feature-card,
    .seminar-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .eagle-story {
        padding: 24px;
    }
    
    .pam-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        min-width: unset;
    }
    
    .pricing-card {
        min-width: unset;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card,
.feature-card,
.seminar-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.pricing-card:hover .btn {
    transform: scale(1.05);
}

.feature-card:hover,
.seminar-card:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

