@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary-color: #5c76e9;
            --secondary-color: #f5a623;
            --background-color: #f8f9fa;
            --text-color: #333;
            --card-background: #ffffff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background-color);
            margin: 0;
            padding: 0;
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            width: 80%;
            max-width: 1200px;
            margin: auto;
            overflow: hidden;
            padding: 20px;
        }

        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            padding: 40px 20px;
            text-align: center;
        }

        header h1 {
            margin: 0;
            font-size: 2.5em;
            font-weight: 700;
        }

        .subtitle {
            font-size: 1.2em;
            margin-top: 10px;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .highlight {
            color: var(--secondary-color);
        }

        .cta-button {
            display: inline-block;
            background-color: var(--secondary-color);
            color: #ffffff;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
        }

        .cta-button:hover {
            background-color: #e69816;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.6);
        }

        /* Estilos para as seções de benefícios e preview */
.benefits-section {
    background-color: var(--card-background);
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.benefits-header, .preview-header {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-header h2, .preview-header h2 {
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 700;
}

/* Estilos do carrossel de benefícios */
.benefits-carousel, .preview-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.benefits-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 0 10px;
}

.benefit-card {
    flex: 0 0 calc(50% - 10px);
    padding: 10px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.benefit-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.benefit-card p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
}

/* Estilos da seção de preview */
.preview-section {
    background-color: var(--card-background);
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.preview-header {
    text-align: center;
    margin-bottom: 40px;
}

.preview-header h2 {
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 15px;
}

.preview-header p {
    color: #666;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

.preview-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.preview-image-container {
    flex: 1;
    max-width: 50%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.preview-image-container:hover {
    transform: translateY(-5px);
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-image-container:hover .preview-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2em;
    margin-bottom: 10px;
    color: white;
}

.preview-overlay p {
    color: white;
    font-size: 1em;
    margin: 0;
}

.preview-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 50%;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.8em;
    min-width: 40px;
    text-align: center;
}

.feature-text h3 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
    font-size: 1.1em;
}

.feature-text p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
}

.preview-cta {
    margin-top: 20px;
    text-align: center;
}

.preview-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.guarantee-icon {
    font-size: 1.5em;
}

.preview-guarantee p {
    margin: 0;
    color: #28a745;
    font-weight: 600;
}

.preview-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.preview-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Responsividade */
@media (max-width: 992px) {
    .preview-content {
        flex-direction: column;
        align-items: center;
    }

    .preview-image-container,
    .preview-features {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .preview-header h2 {
        font-size: 1.8em;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .preview-header h2 {
        font-size: 1.5em;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-icon {
        font-size: 1.5em;
    }
}

/* Navegação do carrossel */
.carousel-navigation {
    text-align: center;
    margin-top: 20px;
}

.carousel-arrow {
    background: var(--primary-color);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

        .price-tag {
            font-size: 1.2em;
            margin-bottom: 20px;
        }

        .old-price {
            text-decoration: line-through;
            color: #888;
            margin-right: 10px;
        }

        .new-price {
            font-weight: bold;
            color: var(--secondary-color);
        }

        .final-cta {
            text-align: center;
            padding: 40px 20px;
            background-color: var(--card-background);
            margin-top: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        footer {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #ffffff;
        text-align: center;
        padding: 40px 0;
        margin-top: 40px;
    }

    footer .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    footer .copyright {
        margin-bottom: 10px;
    }

    footer .links {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    footer a {
        color: #ffffff;
        text-decoration: none;
        padding: 5px 15px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    footer a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

        @media (max-width: 768px) {
            .container {
                width: 95%;
            }
            .benefit-card {
                flex: 0 0 calc(100% - 20px);
            }
            .preview-section {
                padding: 30px 0;
            }
            .preview-card {
                padding: 10px;
            }
            .preview-card img {
                width: 90%;
                margin: 0 auto;
            }
            .preview-container {
                align-items: center;
            }
            .preview-caption {
                padding: 0 15px;
            }
            .carousel-arrow {
                width: 35px;
                height: 35px;
                font-size: 20px;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.5s ease-out forwards;
        }
        /* Estilo do Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--primary-color);
    text-decoration: none;
}

        /* Estilo para o formulário de contato */
        .contact-form {
        display: grid;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
    }

    .contact-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

/* Estilo quando o campo está em foco */
.contact-form input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Estilo para campo com erro (quando os emails não correspondem) */
.contact-form input[type="email"].error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

/* Estilo para campo válido (quando os emails correspondem) */
.contact-form input[type="email"].valid {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.05);
}

    .contact-form textarea {
        min-height: 150px;
        resize: vertical;
    }

    .contact-form button {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 25px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .contact-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    .form-status {
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

    .form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-message {
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }

        .form-field {
            margin-bottom: 1rem;
            position: relative;
        }

        .form-field input.invalid,
        .form-field textarea.invalid {
            border-color: #dc3545;
            background-color: #fff6f6;
        }

        .form-field input.valid,
        .form-field textarea.valid {
            border-color: #28a745;
            background-color: #f8fff8;
        }

        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-left: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .honeypot {
            display: none;
        }

/* ======================== RESPONSIVIDADE ======================= */
/* Media queries para responsividade */
@media (max-width: 1024px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    header h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.1em;
    }
    .benefits-section, .preview-section {
        padding: 40px 0;
    }

    .benefits-header h2, .preview-header h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .benefit-card {
        flex: 0 0 calc(50% - 10px);
    }

    .benefits-container {
        gap: 15px;
    }

    header {
        padding: 40px 0;
    }

    header h1 {
        font-size: 1.8em;
    }

    .price-tag {
        font-size: 1.1em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .preview-card img {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    header h1 {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 1em;
    }

    .benefits-header h2, .preview-header h2 {
        font-size: 1.5em;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .modal-content {
        padding: 20px;
        width: 95%;
    }
    .benefit-card {
        padding: 15px;
    }

    .benefit-card img {
        width: 60px;
        height: 60px;
    }

    .benefit-card h3 {
        font-size: 1.1em;
    }

    .preview-caption h3 {
        font-size: 1.1em;
    }
    .preview-card img {
        width: 85%;
    }

    .preview-card {
        padding: 5px;
    }
}