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

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: #1a1a1a;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: #3a86ff;
    transition: all 0.3s ease;
}

a:hover {
    color: #2563eb;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #3a86ff;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #3a86ff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3a86ff 0%, #2563eb 100%);
    color: #fff;
    padding: 160px 0 100px;
    text-align: center;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h2 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.cta-button {
    margin-top: 30px;
}

.btn-primary {
    background-color: #ff6b6b;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    color: #fff;
}

/* Benefícios Section */
.beneficios {
    background-color: #fff;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.beneficio-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.beneficio-card h3 {
    color: #3a86ff;
    margin-bottom: 15px;
}

.beneficio-icon {
    font-size: 2.5rem;
    color: #3a86ff;
    margin-bottom: 20px;
}

/* Problema e Solução Sections */
.problema, .solucao {
    position: relative;
}

.problema {
    background-color: #f8f9fa;
}

.solucao {
    background-color: #fff;
}

.problema-content, .solucao-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Conteúdo Section */
.conteudo {
    background-color: #f8f9fa;
}

.conteudo-lista {
    max-width: 800px;
    margin: 0 auto;
}

.conteudo-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.conteudo-numero {
    background-color: #3a86ff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.conteudo-texto h3 {
    margin-bottom: 10px;
}

/* Bônus Section */
.bonus {
    background-color: #fff;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    border: 2px dashed #ff6b6b;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    background-color: #fff9f9;
    transform: scale(1.03);
}

.bonus-valor {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b6b;
    margin: 15px 0;
}

.bonus-tag {
    background-color: #ff6b6b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

/* Depoimentos Section */
.depoimentos {
    background-color: #f8f9fa;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.depoimento-texto:before {
    content: '"';
    font-size: 4rem;
    color: #e6e6e6;
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: 0;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #e6e6e6;
}

.depoimento-info h4 {
    margin-bottom: 5px;
}

.depoimento-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Garantia Section */
.garantia {
    background-color: #fff;
    text-align: center;
}

.garantia-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid #3a86ff;
    border-radius: 10px;
}

.garantia-icon {
    font-size: 3rem;
    color: #3a86ff;
    margin-bottom: 20px;
}

/* Preços Section */
.precos {
    background-color: #f8f9fa;
}

.precos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.preco-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.preco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.preco-header {
    background-color: #3a86ff;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.preco-header h3 {
    color: #fff;
    margin-bottom: 10px;
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 700;
}

.preco-periodo {
    font-size: 1rem;
    opacity: 0.8;
}

.preco-body {
    padding: 30px;
}

.preco-features {
    margin-bottom: 30px;
}

.preco-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.preco-features li:before {
    content: "✓";
    color: #3a86ff;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.preco-cta {
    text-align: center;
}

.preco-popular {
    position: relative;
}

.preco-popular:before {
    content: "Mais Popular";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff6b6b;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

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

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 20px;
}

.faq-pergunta {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3a86ff;
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, #3a86ff 0%, #2563eb 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta-final h2 {
    color: #fff;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links ul {
    display: flex;
}

.footer-links ul li {
    margin-left: 20px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-links ul li:first-child {
        margin-left: 0;
    }
    
    nav {
        display: none;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
