/* Reset e configurações básicas */
* {
    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;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffc3a0 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(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #31f500; /* verde limão */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff200;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

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

/* Botões CTA */
.cta-button {
    background: linear-gradient(45deg, #ff6b9d, #ff8a80);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.cta-button.large {
    padding: 25px 60px;
    font-size: 1.3rem;
}

.cta-button i {
    margin-right: 10px;
}

/* Seção CTA */
.cta-section {
    text-align: center;
    padding: 40px 0;
}

/* Seção Problema/Solução */
.problem-solution {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.problem-card:hover, .solution-card:hover {
    transform: translateY(-10px);
}

.problem-card .icon {
    color: #ff6b9d;
    font-size: 3rem;
    margin-bottom: 20px;
}

.solution-card .icon {
    color: #4caf50;
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3, .solution-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.problem-card p, .solution-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Seção Benefícios */
.benefits {
    padding: 60px 0;
    background: white;
}

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

.benefit-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Seção Conteúdo */
.content-preview {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-list {
    margin-top: 40px;
}

.content-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-item i {
    color: #4caf50;
    font-size: 1.2rem;
    margin-right: 15px;
}

.content-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.content-images img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.content-images img:hover {
    transform: scale(1.05);
}

/* Seção Depoimentos */
.testimonials {
    padding: 60px 0;
    background: white;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #ff6b9d;
    transition: transform 0.3s ease;
}

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

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    color: #333;
    font-size: 1.1rem;
}

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

/* Seção Oferta */
.offer {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.offer-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ebook-card, .bonus-card {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.ebook-card h3, .bonus-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.new-price {
    color: #ff6b9d;
    font-size: 2.5rem;
    font-weight: 700;
}

.bonus-badge {
    background: #ff6b9d;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.bonus-discount {
    color: #4caf50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ebook-features, .bonus-features {
    list-style: none;
    text-align: left;
}

.ebook-features li, .bonus-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ebook-features i, .bonus-features i {
    color: #4caf50;
    margin-right: 10px;
}

.guarantee {
    margin-bottom: 40px;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.guarantee-badge i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.offer-note {
    margin-top: 30px;
    font-size: 1rem;
    opacity: 0.9;
}

.offer-note i {
    margin-right: 8px;
}

/* Seção Sobre */
.about {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-proof {
    display: flex;
    align-items: center;
    margin-top: 30px;
    font-size: 1.2rem;
    color: #ff6b9d;
    font-weight: 600;
}

.social-proof i {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff6b9d;
}

.footer-logo p {
    color: #ccc;
    font-size: 1rem;
}

.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff6b9d;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #ff6b9d;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .content-images {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .offer-title {
        font-size: 1.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-text {
    animation-delay: 0.2s;
}

.hero-image {
    animation-delay: 0.4s;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

