/* Estilos Globais */
:root {
    --primary-color: #C9D8C5;
    --secondary-color: #E8D9C4;
    --accent-color: #F6F5F0;
    --text-color: #333;
    --light-text: #777;
    --highlight: #D4AF37; /* Dourado/Amarelo Ocre */
    --button-color: #C9B27D; /* Um bege/dourado mais suave para botões */
    --button-hover: #B8A26C; /* Escurece um pouco no hover */
    --discount-badge: #FF5252; /* Vermelho para destaque de desconto */
    --card-bg: #fff;
    --bg-color: #F9F9F7; /* Um off-white muito sutil para o fundo */
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    padding-bottom: 2rem; /* Espaço para o rodapé */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.logo i {
    color: var(--button-color);
}

.title {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Adiciona padding lateral em telas menores */
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column; /* Mobile first */
    align-items: center;
    padding: 2rem 0;
    text-align: center; /* Mobile first */
    margin-bottom: 2rem;
}

.product-card {
    position: relative;
    max-width: 500px; /* Limita a largura da imagem */
    margin-bottom: 2rem; /* Espaço entre imagem e texto no mobile */
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--discount-badge);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.product-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    max-width: 600px; /* Limita a largura do texto */
}

.hero-content h1 {
    font-size: 2.2rem; /* Ajustado para melhor leitura */
    margin-bottom: 1rem;
}

.highlight {
    color: var(--highlight);
}

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

.promo-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 152, 0, 0.1); /* Laranja claro */
    color: #FF9800; /* Laranja */
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pricing {
    display: flex;
    justify-content: center; /* Centraliza no mobile */
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.2rem;
    color: var(--light-text);
    text-decoration: line-through;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.offer-timer, .countdown {
    color: var(--light-text);
    margin-bottom: 1rem;
    margin-top: 10px;
}

.cta-message {
    font-weight: 600;
    color: var(--discount-badge);
    margin-bottom: 1.5rem;
}

.cta-button, .cta-button-large {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto; /* Centraliza o botão */
    text-decoration: none; /* Para caso use <a> como botão */
}

.cta-button:hover, .cta-button-large:hover {
    background-color: var(--button-hover);
    transform: scale(1.03);
}

.cta-button-large {
    width: 100%;
    max-width: 400px; /* Limita a largura do botão maior */
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Author Section */
.author {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.author-image {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.author-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #f0f0f0; /* Placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
    overflow: hidden; /* Para a imagem da autora */
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #4CAF50; /* Verde */
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.author-title {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.author-bio {
    text-align: left; /* Melhor para leitura de parágrafos */
}

.highlight-text {
    background-color: rgba(212, 175, 55, 0.1); /* Fundo do highlight */
    padding: 1rem;
    border-radius: var(--border-radius);
    color: var(--highlight);
    text-align: center;
    font-weight: 500;
    margin-top: 1.5rem; /* Espaçamento */
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
    text-align: center;
    flex-wrap: wrap; /* Para telas menores */
    gap: 1rem; /* Espaço entre os stats no mobile */
}

.stat {
    flex-basis: calc(33.333% - 1rem); /* Para 3 colunas com gap */
    min-width: 120px; /* Largura mínima para evitar quebra feia */
}

.stat h2 {
    font-size: 2.5rem;
    color: var(--highlight);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Benefits Section */
.benefits {
    margin-bottom: 3rem;
}

.benefits h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start; /* Alinha ícone e texto no topo */
    gap: 1rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--highlight);
    background-color: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Evita que o ícone encolha */
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
}

/* Tools Section */
.tools {
    margin-bottom: 3rem;
    text-align: center;
}

.tools h2 {
    margin-bottom: 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Responsivo */
    gap: 1.5rem; /* Aumenta o gap */
}

.tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tool-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--highlight);
}

/* Preview Section */
.preview {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.preview h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.chapter {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden; /* Para o border-radius funcionar com o h3 */
}

.chapter h3 {
    padding: 1rem;
    background-color: #f9f9f9; /* Um cinza muito claro */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0; /* Remove margem padrão do h3 */
}

.chapter-content {
    padding: 1.5rem;
}

.chapter-content h4 {
    margin-bottom: 1.5rem;
}

.tool-description {
    margin-bottom: 1.5rem;
}

.tutorial {
    margin-bottom: 1.5rem;
}

.example {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center; /* Centraliza os itens de cor */
}

.color-item {
    text-align: center;
}

.color-box {
    width: 80px;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    border: 1px solid #eee; /* Borda sutil */
}

.preview-note {
    text-align: center;
    font-style: italic;
    color: var(--light-text);
    margin-top: 1.5rem; /* Espaçamento */
}

/* Reviews Section */
.reviews {
    margin-bottom: 3rem;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.review-cards {
    display: grid;
    gap: 1rem;
    /* Grid responsivo para os cards de review */
    grid-template-columns: 1fr; /* 1 coluna por padrão (mobile) */
}

.review-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--light-text);
}

.review-title {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.review-rating {
    color: #FFD700; /* Amarelo para estrelas */
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.verified {
    color: #4CAF50; /* Verde */
}

.useful {
    color: var(--light-text);
}

.review-summary {
    text-align: center;
    margin-top: 2rem;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stars {
    color: #FFD700; /* Amarelo para estrelas */
}

/* Final CTA Section */
.final-cta {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


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

.final-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0; /* Ajustado */
}

.discount {
    color: var(--discount-badge);
    font-weight: 600;
    margin-top: 0.5rem;
}

.payment-info {
    margin-top: 1.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--light-text);
    font-size: 0.9rem;
    border-top: 1px solid rgba(0,0,0,0.05); /* Linha sutil no topo */
    margin-top: 2rem; /* Espaço antes do rodapé */
}

.footer-logo {
    font-size: 2rem;
    color: var(--button-color);
    margin-bottom: 1rem;
}

.copyright {
    margin: 1rem 0;
}

.contact {
    font-size: 0.85rem;
}

/* Responsividade */
@media (min-width: 768px) { /* Tablets e acima */
    .hero {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
        align-items: flex-start; /* Alinha imagem e texto no topo */
    }
    
    .product-card {
        flex: 1; /* Permite que a imagem e o texto dividam o espaço */
        margin-bottom: 0; /* Remove margem inferior no desktop */
    }
    
    .hero-content {
        flex: 1;
    }

    .pricing {
        justify-content: flex-start; /* Alinha preços à esquerda no desktop */
    }

    .cta-button, .cta-button-large {
        margin: 0; /* Remove centralização no desktop */
    }
    
    .review-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas para reviews */
    }
}

@media (min-width: 1024px) { /* Desktops maiores */
    .review-cards {
        grid-template-columns: repeat(4, 1fr); /* 4 colunas para reviews */
    }
    
    .tools-grid {
        grid-template-columns: repeat(5, 1fr); /* 5 colunas para ferramentas */
    }
}

/* OS ESTILOS DO MODAL PIX FORAM REMOVIDOS DESTE ARQUIVO */

