/* Estilos Globais */
:root {
    --primary-color: #4CAF50;
    --primary-light: #81C784;
    --primary-dark: #2E7D32;
    --secondary-color: #E57373;
    --secondary-light: #EF9A9A;
    --secondary-dark: #C62828;
    --accent-color: #FFA726;
    --dark-color: #263238;
    --light-color: #ECEFF1;
    --text-color: #37474F;
    --white: #FFFFFF;
    --success-color: #66BB6A;
    --gradient-primary: linear-gradient(135deg, #4CAF50, #2E7D32);
    --gradient-secondary: linear-gradient(135deg, #E57373, #C62828);
    --gradient-accent: linear-gradient(135deg, #FFA726, #FB8C00);
    --gradient-dark: linear-gradient(135deg, #37474F, #263238);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 15px rgba(76, 175, 80, 0.4);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-cta {
    background: var(--gradient-secondary);
    color: var(--white);
    font-size: 1.2rem;
    padding: 18px 36px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Header */
header {
    padding: 15px 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.4s ease;
    border-bottom: 3px solid var(--primary-light);
}

header:hover {
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 5px 0;
}

.logo {
    max-width: 120px;
    transition: transform 0.3s ease;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.ai-indicator {
    display: flex;
    align-items: center;
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.ai-pulse {
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    animation: pulse 1.5s infinite;
}

.ai-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.7);
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.7);
        opacity: 0.7;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(0.7);
        opacity: 0;
    }
}

.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234CAF50' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 450px;
    margin-left: 30px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.cta-primary {
    margin-top: 2rem;
}

.price-tag {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.price-tag span {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: var(--white);
}

.cta-secondary {
    text-align: center;
    margin-top: 40px;
}

/* How It Works Section */
.how-it-works {
    background-color: #f9f9f9;
    position: relative;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: 70%;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
}

/* Product Details Section */
.product-details {
    background-color: var(--white);
}

.product-details .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.details-content {
    flex: 1;
    max-width: 600px;
}

.mascot-image {
    flex: 1;
    max-width: 400px;
    margin-left: 30px;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.features-list li i {
    color: var(--success-color);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Bonus Section */
.bonus {
    background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
    position: relative;
}

.bonus .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bonus-image {
    flex: 1;
    max-width: 400px;
    margin-right: 30px;
    transform: rotate(-5deg);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.bonus-image:hover {
    transform: rotate(0deg) scale(1.05);
}

.bonus-content {
    flex: 1;
    max-width: 600px;
}

.bonus-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bonus-features {
    margin-top: 20px;
}

.bonus-features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
}

.bonus-features li i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 5px;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--white);
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    background-color: #f9f9f9;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guarantee-icon i {
    font-size: 40px;
    color: var(--white);
}

.guarantee-highlight {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Disclaimer Section */
.disclaimer {
    background-color: #f9f9f9;
    text-align: center;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.disclaimer-content p {
    font-style: italic;
    color: #546E7A;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-toggle {
    margin-left: 20px;
}

.faq-toggle i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.price-box {
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.2rem;
    color: #78909C;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.payment-info {
    font-size: 0.9rem;
    color: #78909C;
}

.payment-methods {
    margin-top: 30px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.payment-icons i {
    font-size: 30px;
    color: #78909C;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-social {
    min-width: 200px;
}

.footer-social h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: var(--light-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    opacity: 0.8;
}

.social-link:hover {
    color: var(--primary-light);
    opacity: 1;
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Animações e efeitos especiais */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

.pulse-effect {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Partículas */
.particle {
    position: absolute;
    background-color: rgba(76, 175, 80, 0.7);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container,
    .product-details .container,
    .bonus .container {
        flex-direction: column;
    }
    
    .hero-content,
    .details-content,
    .bonus-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-image,
    .mascot-image,
    .bonus-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 40px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-info, .footer-social {
        width: 100%;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .ai-indicator span {
        display: none;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .features-list li, .bonus-features li {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .header-content {
        padding: 0 10px;
    }
    
    .disclaimer-content, .guarantee-content {
        padding: 20px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
