/* Variáveis de cores */
:root {
    --color-wine: #8C001A;
    --color-wine-light: #B30021;
    --color-wine-dark: #6B0014;
    --color-black: #000000;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C158;
    --color-gold-dark: #A38829;
    --color-white: #FFFFFF;
    --color-gray: #F5F5F5;
    --color-dark-gray: #333333;
    
    --font-title: 'Playfair Display', serif;
    --font-subtitle: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark-gray);
    line-height: 1.6;
    background-color: var(--color-white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    margin-bottom: 20px;
    color: var(--color-wine);
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--color-wine);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-subtitle);
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-dark-gray);
}

.alt-bg {
    background-color: var(--color-gray);
}

/* Botão flutuante de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 8px;
}

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

/* Barra de contagem regressiva */
.countdown-bar {
    background-color: var(--color-wine-dark);
    color: var(--color-white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.countdown-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.countdown-text {
    display: flex;
    align-items: center;
}

.countdown-text i {
    margin-right: 10px;
    color: var(--color-gold);
}

.countdown-timer {
    display: flex;
    gap: 10px;
}

.countdown-item {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    min-width: 60px;
}

.countdown-item span {
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Botões */
.cta-button {
    display: inline-block;
    background-color: var(--color-wine);
    color: var(--color-white);
    font-family: var(--font-subtitle);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--color-wine);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--color-wine-dark);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

.submit-button {
    background-color: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-subtitle);
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--color-gold-dark);
    color: var(--color-white);
}

/* Header e Hero */
.hero {
    min-height: 120vh;
    min-height: 630px;
    background-image: url('images/header-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--color-white);
    display: flex;
    align-items: center;
    text-align: center;
    overflow:visible;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.logo h1 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-family: var(--font-subtitle);
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-feature i {
    color: var(--color-gold);
}

/* Seção "O que é o livro" */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-content, .image-content {
    flex: 1;
    position: relative;
}

.image-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--color-gold);
    color: var(--color-black);
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
}

.image-placeholder {
    background-color: var(--color-gray);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: var(--color-dark-gray);
    border: 1px dashed var(--color-dark-gray);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-wine);
}
.image-placeholder2 {
    background-color: var(--color-gray);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: var(--color-dark-gray);
    border: 0px dashed var(--color-dark-gray);}

.image-placeholder2 i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-wine);
}

/* Seção "Para quem é" */
.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

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

/* Seção "O que você vai encontrar" */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--color-wine);
    min-width: 50px;
    text-align: center;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Seção de Depoimentos */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(140, 0, 26, 0.1);
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-wine);
    font-size: 1.5rem;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.testimonial-stars {
    color: var(--color-gold);
}

/* Seção "Como funciona" */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

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

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

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Seção "Tem crianças em casa" */
.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefits-list .icon {
    color: var(--color-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Seção "Compartilhe o prato" */
.social-share {
    background-color: var(--color-wine-light);
    color: var(--color-white);
    border: none;
}

.social-share i {
    color: var(--color-white);
}

.bonus-badge {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-black);
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Seção de Exemplos */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.example-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.example-image {
    height: 200px;
    overflow: hidden;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.example-card:hover .example-image img {
    transform: scale(1.1);
}

.example-content {
    padding: 20px;
}

.example-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.limited-offer {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 20px;
}

/* Seção CTA/Compra */
.cta-section {
    background-color: var(--color-wine-dark);
    color: var(--color-white);
    text-align: center;
}

.cta-section .section-title {
    color: var(--color-white);
}

.cta-section .section-title::after {
    background-color: var(--color-gold);
}

.value-proposition {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-family: var(--font-subtitle);
}

.offer-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold);
    color: var(--color-black);
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pricing {
    margin-bottom: 40px;
}

.price-comparison {
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 10px;
}

.discount {
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.price {
    font-family: var(--font-title);
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: inline-block;
}

.currency {
    font-size: 2rem;
    vertical-align: super;
}

.cents {
    font-size: 2rem;
}

.payment-options {
    margin-bottom: 30px;
}

.payment-icons {
    font-size: 2rem;
    color: var(--color-white);
    margin-top: 10px;
}

.payment-icons i {
    margin: 0 10px;
}

.offer-includes {
    text-align: left;
    margin-bottom: 30px;
}

.offer-includes h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
}

.offer-list {
    list-style: none;
}

.offer-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.offer-list i {
    color: var(--color-gold);
    margin-right: 10px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
    border: 1px dashed var(--color-gold);
    border-radius: 10px;
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    color: var(--color-gold);
}

.guarantee-content h3 {
    color: var(--color-gold);
    margin-bottom: 5px;
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.secure-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-gold-light);
}

.secure-badge i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.limited-spots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--color-gold);
    font-weight: bold;
}

.limited-spots i {
    font-size: 1.5rem;
}

/* Seção FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    color: var(--color-wine);
    font-size: 1.2rem;
}

.faq-answer {
    background-color: var(--color-gray);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 20px;
}

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

.footer-logo h2 {
    color: var(--color-gold);
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--color-white);
    font-style: italic;
}

.footer-links h3, .footer-social h3 {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-white);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--color-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--color-white);
    margin-left: 20px;
}

.legal-links a:hover {
    color: var(--color-gold);
}

/* Responsividade */
@media (max-width: 992px) {
    .main-title {
        font-size: 2.8rem;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .image-content {
        order: -1;
    }
    
    .cards-container, .steps-container {
        flex-wrap: wrap;
    }
    
    .card, .step {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 30px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-logo, .footer-links, .footer-social {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .countdown-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .secure-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .card, .step {
        flex: 0 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        margin-top: 15px;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-button span {
        display: none;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
    }
    
    .whatsapp-button i {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .cta-button {
        width: 100%;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
