/* Reset e Base */
* {
    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;
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.urgency-banner {
    background: #ff4757;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    animation: bounce 2s infinite;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.countdown {
    display: flex;
    gap: 5px;
    font-weight: 700;
    font-size: 1.1em;
}

.countdown span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 8px;
    border-radius: 5px;
    min-width: 35px;
}

.hero-title {
    font-size: 3.2em;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-container {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    border: 3px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.guarantee-text {
    margin-top: 20px;
    font-size: 1.1em;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border-radius: 2px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.problem-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 5px solid #ff6b6b;
}

.problem-item:hover {
    transform: translateY(-10px);
}

.problem-item i {
    font-size: 3em;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

.story-section {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.story-section h3 {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.story-text strong {
    color: #ff6b6b;
}

blockquote {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1em;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4em;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

cite {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-weight: 600;
    font-style: normal;
}

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

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.product-image {
    position: relative;
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4757;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9em;
    animation: bounce 2s infinite;
}

.product-info h3 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.product-subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
}

.benefit-item i {
    color: #4CAF50;
    font-size: 1.3em;
    flex-shrink: 0;
}

.transformation-results {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
}

.transformation-results h3 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.result-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.result-item i {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffd700;
}

.result-item h4 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
}

.result-item p {
    opacity: 0.9;
    line-height: 1.6;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 40px 30px;
}

.stars {
    color: #ffd700;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
    font-style: italic;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1.1em;
}

.testimonial-author span {
    display: block;
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

.social-proof-numbers {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.proof-item {
    text-align: center;
}

.proof-item .number {
    display: block;
    font-size: 3em;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.proof-item .label {
    font-size: 1.1em;
    color: #666;
    font-weight: 600;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.scarcity-alert {
    background: #ff4757;
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 1.1em;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.offer-content {
    max-width: 900px;
    margin: 0 auto;
}

.product-package {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-package h3 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
}

.package-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    text-align: left;
}

.package-item.main-product {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffd700;
}

.package-item.bonus {
    background: rgba(255, 255, 255, 0.1);
}

.package-item i {
    font-size: 2em;
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 5px;
}

.package-item h4 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-item p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 10px;
}

.package-item .value {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1em;
}

.bonus-section h4 {
    font-size: 1.8em;
    font-weight: 700;
    margin: 40px 0 30px;
    color: #ffd700;
}

.price-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.price-comparison {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.original-price {
    text-align: left;
}

.original-price .label {
    display: block;
    font-size: 1.1em;
    opacity: 0.8;
    margin-bottom: 5px;
}

.original-price .price {
    font-size: 1.8em;
    font-weight: 700;
    text-decoration: line-through;
    opacity: 0.7;
}

.discount-price {
    text-align: right;
}

.discount-price .label {
    display: block;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.discount-price .price {
    font-size: 3.5em;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.discount {
    background: #ff4757;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 700;
    margin-left: 15px;
    animation: bounce 2s infinite;
}

.payment-options {
    font-size: 1.2em;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 30px 50px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4em;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    border: 3px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
}

.cta-button-large i {
    font-size: 1.2em;
}

.cta-subtitle {
    font-size: 0.8em;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: normal;
}

.guarantee-section {
    margin: 40px 0;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge i {
    font-size: 3em;
    color: #4CAF50;
    flex-shrink: 0;
}

.guarantee-badge h4 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-badge p {
    opacity: 0.9;
    line-height: 1.6;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.security-badges img {
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.security-badges img:hover {
    opacity: 1;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
}

.faq-question i {
    color: #666;
    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: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.final-cta-content > p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.urgency-reminder {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 1.1em;
    backdrop-filter: blur(10px);
}

.final-guarantee {
    margin-top: 30px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2em;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-proof-numbers {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-button, .cta-button-large {
        font-size: 1.1em;
        padding: 18px 30px;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .final-cta-content h2 {
        font-size: 2.2em;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .urgency-banner, .urgency-reminder {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .package-item {
        flex-direction: column;
        text-align: center;
    }
    
    .discount-price .price {
        font-size: 2.5em;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Accessibility improvements */
.cta-button:focus,
.cta-button-large:focus,
.faq-question:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero,
    .final-cta-section,
    .offer-section {
        background: white !important;
        color: black !important;
    }
    
    .cta-button,
    .cta-button-large {
        display: none;
    }
}

