/* 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;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title.white {
    color: white;
}

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

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 25px 50px;
    font-size: 1.2rem;
}

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

.pulse {
    animation: pulse 2s infinite;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.badge-text {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.badge-subtext {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

/* Problema Section */
.problema {
    padding: 5rem 0;
    background: #f8f9fa;
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problema-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.problema-card:hover {
    transform: translateY(-5px);
}

.problema-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.problema-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.problema-texto {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Solução Section */
.solucao {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.solucao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solucao-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.solucao-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.beneficios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.beneficio {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.beneficio i {
    color: #f39c12;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.beneficio h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.beneficio p {
    color: #bdc3c7;
}

.product-mockup {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mockup-screen {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    color: #333;
}

.mockup-content h4 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mockup-item {
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

/* Urgência Section */
.urgencia {
    padding: 4rem 0;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
}

.urgencia-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.urgencia-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timer-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 100px;
}

.timer-unit span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.timer-unit label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.escassez {
    max-width: 600px;
    margin: 0 auto;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.3);
    height: 20px;
    border-radius: 10px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.vendas-count {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Bônus Section */
.bonus {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #f39c12;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.bonus-header h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    flex: 1;
}

.bonus-value {
    text-align: right;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.new-price {
    display: block;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1rem;
}

.bonus-total {
    text-align: center;
    font-size: 1.3rem;
    color: #e74c3c;
    font-weight: 700;
}

/* Oferta Section */
.oferta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.price-comparison {
    margin-bottom: 2rem;
}

.old-pricing {
    margin-bottom: 1rem;
}

.crossed-price {
    display: block;
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.current-price {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 400px;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #f39c12;
}

.price-justification {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.garantia-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.garantia-item i {
    color: #f39c12;
}

/* Garantia Section */
.garantia {
    padding: 4rem 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.garantia-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.garantia-badge i {
    font-size: 1.5rem;
}

.garantia-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.garantia-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.garantia-highlight {
    color: #f39c12;
    font-size: 1.2rem !important;
}

/* CTA Final Section */
.cta-final {
    padding: 5rem 0;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-info h3 {
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal {
    text-align: right;
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solucao-content {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .timer-unit {
        min-width: 80px;
        padding: 1rem;
    }
    
    .timer-unit span {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons,
    .cta-buttons,
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .countdown-timer {
        flex-direction: column;
        align-items: center;
    }
    
    .timer-unit {
        width: 100%;
        max-width: 200px;
    }
}

