/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(44, 95, 93, 0.8), rgba(44, 95, 93, 0.6)), 
                url('https://images.pexels.com/photos/8199562/pexels-photo-8199562.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 93, 0.9) 0%, rgba(255, 107, 53, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #FF6B35;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FF6B35;
    transform: scaleX(0);
    animation: underlineGrow 2s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-button, .cta-button-large {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.cta-button-large {
    font-size: 1.4rem;
    padding: 25px 50px;
    width: 100%;
    max-width: 400px;
}

.cta-button:hover, .cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cta-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #2C5F5D;
    font-weight: 600;
}

/* What You'll Learn Section */
.what-learn {
    background: #f8fafc;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.learn-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #FF6B35;
}

.learn-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.learn-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2C5F5D, #3A7A77);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.learn-item h3 {
    color: #2C5F5D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.learn-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #2C5F5D 0%, #3A7A77 100%);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Bonus Section */
.bonus {
    background: #f8fafc;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 2px solid #FF6B35;
}

.bonus-item::before {
    content: 'BÔNUS';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #FF6B35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.bonus-item h3 {
    color: #2C5F5D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.bonus-value {
    display: block;
    color: #FF6B35;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.bonus-total {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.free-text {
    font-size: 1.5rem;
    color: #2C5F5D;
    margin-top: 0.5rem;
}

/* Purchase Section */
.purchase {
    background: linear-gradient(135deg, #2C5F5D 0%, #1e4442 100%);
    color: white;
}

.purchase-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
}

.purchase-card h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.price-section {
    margin-bottom: 2rem;
}

.price-section .old-price {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.current-price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.installments {
    font-size: 1rem;
    opacity: 0.8;
}

.purchase-benefits {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.purchase-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.purchase-benefits i {
    color: #FF6B35;
    font-size: 1.1rem;
}

.secure-payment {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Guarantee Section */
.guarantee {
    background: #f8fafc;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    min-width: 150px;
    text-align: center;
}

.guarantee-badge i {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.guarantee-badge span {
    font-weight: 700;
    font-size: 1.2rem;
}

.guarantee-text h3 {
    color: #2C5F5D;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guarantee-text p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #2C5F5D;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-cta {
    margin-bottom: 2rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-link.tiktok:hover {
    background: #000000;
    border-color: #ff0050;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGrow {
    to {
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button, .cta-button-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .learn-grid,
    .testimonials-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .purchase-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .learn-item,
    .bonus-item,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .purchase-card {
        padding: 1.5rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}