/* Estilos Globais */
:root {
    --primary-color: #1e88e5; /* Azul principal */
    --secondary-color: #0d47a1; /* Azul mais escuro */
    --accent-color: #ff9800; /* Laranja para CTAs */
    --text-color: #333333;
    --light-bg: #f5f9ff;
    --white: #ffffff;
    --gray: #f0f0f0;
    --dark-gray: #666666;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

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

p {
    margin-bottom: 1.5rem;
}

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

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

section {
    padding: 4rem 0;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 2rem;
}

.hero-image-placeholder {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 500px;
    text-align: center;
}

/* Seções de conteúdo */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.section-light {
    background-color: var(--light-bg);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .container {
        width: 95%;
    }
}


/* Estilos adicionais para as seções específicas */
.ebook-presentation {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.ebook-cover-placeholder {
    flex: 1;
    background-color: rgba(30, 136, 229, 0.1);
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebook-text {
    flex: 2;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefits-list h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial:before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 10px;
    line-height: 1;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-weight: bold;
    margin-top: 1rem;
}

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

.price {
    margin: 2rem 0;
    font-size: 1.2rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--dark-gray);
    margin-right: 1rem;
}

.current-price {
    font-size: 1.5rem;
}

.current-price strong {
    color: var(--primary-color);
    font-size: 2rem;
}

.guarantee-seal-placeholder {
    background-color: rgba(30, 136, 229, 0.1);
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

/* Animação de pulsar para CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 1s ease-in-out;
}

/* Responsividade adicional */
@media (max-width: 768px) {
    .ebook-presentation {
        flex-direction: column;
    }
    
    .ebook-cover-placeholder, .ebook-text {
        flex: none;
        width: 100%;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

/* Estilos para elementos de conversão */

/* Contador regressivo */
.contador-regressivo {
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin: 2rem 0;
    text-align: center;
}

.contador {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contador-item {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    padding: 0.5rem;
    min-width: 60px;
    text-align: center;
}

.contador-item span:first-child {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.contador-item span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Notificações de compras */
.notificacoes-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.notificacao-compra {
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    animation: slideIn 0.5s ease-out;
}

.notificacao-compra.desaparecer {
    animation: slideOut 0.5s ease-in forwards;
}

.fechar-notificacao {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--dark-gray);
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Ícones de benefícios */
.beneficio-icone {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    display: inline-block;
}

/* Botão flutuante */
.botao-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.botao-flutuante.mostrar {
    opacity: 1;
    transform: translateY(0);
}

.cta-button-small {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

/* Indicador de visualizações */
.visualizacoes-atuais {
    background-color: rgba(30, 136, 229, 0.1);
    border-radius: 5px;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    display: inline-block;
}

.ponto-ativo {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 5px;
    animation: piscar 1.5s infinite;
}

@keyframes piscar {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
