/* Estilos Globais */
:root {
    --primary-color: #006853;
    --secondary-color: #00A67E;
    --background-color: #FFFBE5;
    --cta-color: #F18A00;
    --cta-hover-color: #e07e00;
    --text-color: #000000;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --section-spacing: 80px; /* Aumentado para maior espaçamento entre seções */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; /* Para rolagem suave ao clicar em âncoras */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative; /* Para posicionamento do menu fixo */
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
    font-size: 1.05rem; /* Ligeiramente maior para melhor legibilidade */
}

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

.highlight {
    color: var(--secondary-color);
    font-weight: 600; /* Destaque mais forte */
}

/* Menu de Navegação Fixo */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--cta-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Indicadores de Progresso */
.progress-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 104, 83, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Botões CTA Aprimorados */
.cta-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(241, 138, 0, 0.3); /* Sombra para destaque */
    position: relative;
    overflow: hidden;
    font-size: 1.05rem; /* Ligeiramente maior */
}

.cta-button:hover {
    background-color: var(--cta-hover-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(241, 138, 0, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
}

/* Efeito de pulsar para CTAs principais */
.cta-primary {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 138, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(241, 138, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(241, 138, 0, 0);
    }
}

/* Seções com maior espaçamento */
section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

/* Separador visual entre seções */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    width: 80%;
    margin: 0 auto;
    opacity: 0.5;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 0 40px;
    background-color: var(--background-color);
    margin-top: 60px; /* Espaço para o menu fixo */
}

.logo {
    margin-bottom: 30px;
    max-width: 200px;
    height: auto;
}

.header h1 {
    font-size: 2.8rem; /* Maior para mais destaque */
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: #333; /* Melhor contraste */
}

/* Seção de Vídeo Introdutório */
.video-intro {
    text-align: center;
    background-color: var(--background-color);
    padding-top: 20px; /* Menos espaço no topo pois já está próximo do header */
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.video-player {
    position: relative;
    border-radius: 15px; /* Bordas mais arredondadas */
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Sombra mais pronunciada */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(241, 138, 0, 0.8); /* Cor do CTA para consistência */
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(241, 138, 0, 0.9);
}

.play-icon {
    color: var(--white);
    font-size: 2.5rem;
}

.video-timer {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Melhor legibilidade */
}

.timer-count {
    font-size: 3rem; /* Maior para mais destaque */
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.sound-button {
    position: absolute;
    bottom: 10%;
    right: 10%;
    color: var(--white);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sound-button:hover {
    background-color: rgba(0, 104, 83, 0.7);
}

.sound-instruction {
    margin-top: 15px;
    font-weight: 600;
    color: var(--cta-color); /* Destaque na cor do CTA */
    font-size: 1.1rem;
}

/* Seção 60 Histórias Bíblicas */
.stories-section {
    text-align: center;
    background-color: var(--white); /* Alternância de cores para melhor separação visual */
}

.stories-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.combo-title {
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

/* Seção Missão */
.mission-section {
    background-color: var(--background-color);
    position: relative;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 60px; /* Maior espaçamento */
}

.mission-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-image img {
    border-radius: 15px;
    transition: all 0.5s ease;
}

.mission-image:hover img {
    transform: scale(1.03);
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    color: var(--primary-color);
    font-size: 2.3rem;
    position: relative;
    margin-bottom: 30px;
}

.mission-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.mission-text h3 {
    color: var(--text-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.mission-cta {
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 30px;
    color: var(--cta-color);
}

/* Seção Histórias Cristãs */
.christian-stories {
    text-align: center;
    background-color: var(--white);
}

.christian-stories h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.christian-stories h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

.story-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.story-card:hover img {
    transform: scale(1.05);
}

.story-card h3 {
    padding: 20px 15px;
    font-size: 1.1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Seção Benefícios */
.benefits-section {
    background-color: var(--background-color);
    position: relative;
}

.benefits-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; /* Maior espaçamento */
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
}

.benefit-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-top: auto;
}

/* Seção Prévia */
.preview-section {
    text-align: center;
    background-color: var(--white);
}

.preview-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

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

.preview-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.15rem;
}

.preview-note {
    font-style: italic;
    margin: 30px 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.video-preview {
    max-width: 800px;
    margin: 30px auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-preview .play-button {
    width: 80px;
    height: 80px;
}

/* Seção Combo */
.combo-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    position: relative;
}

.combo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
}

.combo-section h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

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

.combo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.combo-image {
    margin-bottom: 40px;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bonus-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.bonus-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.check-icon {
    background-color: var(--cta-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.bonus-item p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Seção Preço */
.price-section {
    text-align: center;
    background-color: var(--white);
}

.price-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    position: relative;
}

.price-card::before {
    content: 'MELHOR OFERTA';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cta-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.access-now {
    background-color: var(--cta-color);
    color: var(--white);
    padding: 12px;
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.old-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: #777;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
    line-height: 1;
}

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

.payment-type {
    font-weight: 700;
    margin-bottom: 30px;
    background-color: var(--light-gray);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
}

.security-seals {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-seals img {
    max-height: 50px;
    transition: all 0.3s ease;
}

.security-seals img:hover {
    transform: scale(1.05);
}

/* Contador de Escassez */
.scarcity-counter {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 400px;
    text-align: center;
}

.scarcity-counter h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.counter-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

.counter-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.counter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Seção Garantia */
.guarantee-section {
    background-color: var(--background-color);
    position: relative;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.guarantee-image {
    flex: 1;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.guarantee-image img {
    max-width: 100%;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.guarantee-image:hover img {
    transform: rotate(5deg);
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 30px;
}

.guarantee-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.guarantee-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--cta-color);
}

.guarantee-text p {
    font-size: 1.15rem;
}

/* Seção FAQ */
.faq-section {
    text-align: center;
    background-color: var(--white);
}

.faq-section h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

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

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

.faq-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.faq-item h3::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cta-color);
    font-weight: 800;
}

.faq-item p {
    position: relative;
    padding-left: 30px;
}

.faq-item p::before {
    content: 'R:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 800;
}

/* Seção Sobre */
.about-section {
    background-color: var(--background-color);
    position: relative;
}

.about-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

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

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.about-content strong {
    color: var(--primary-color);
}

/* Testemunhos */
.testimonials-section {
    background-color: var(--white);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

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

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

.testimonial-card {
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 104, 83, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Rodapé */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--cta-color), var(--secondary-color), var(--cta-color));
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--cta-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--cta-color);
    transform: translateY(-3px);
}

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

/* Botão de Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--cta-color);
    transform: translateY(-5px);
}

/* Pop-up de Saída */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup.visible {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: all 0.5s ease;
}

.exit-popup.visible .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background-color: #ddd;
}

.popup-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.popup-offer {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.popup-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsividade - Ajustes adicionais */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        z-index: 999;
        transform: translateY(-100%);
        transition: all 0.3s ease;
    }
    
    .mobile-menu.open {
        transform: translateY(0);
    }
    
    .mobile-menu ul {
        list-style: none;
    }
    
    .mobile-menu li {
        margin-bottom: 15px;
    }
    
    .mobile-menu a {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        display: block;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .progress-indicator {
        display: none;
    }
    
    .guarantee-content,
    .mission-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text h2::after,
    .mission-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column {
        flex: 100%;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    section {
        padding: var(--section-spacing) 0;
    }
    
    .header h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .stories-section h2,
    .christian-stories h2,
    .preview-section h2,
    .combo-section h2,
    .faq-section h2,
    .about-section h2,
    .testimonials-section h2 {
        font-size: 2.2rem;
    }
    
    .combo-title {
        font-size: 1.8rem;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .mission-text h3 {
        font-size: 1.4rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .timer-count {
        font-size: 2.5rem;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .guarantee-text h2 {
        font-size: 2rem;
    }
    
    .guarantee-text h3 {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-spacing: 50px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .stories-section h2,
    .christian-stories h2,
    .preview-section h2,
    .combo-section h2,
    .faq-section h2,
    .about-section h2,
    .testimonials-section h2 {
        font-size: 1.8rem;
    }
    
    .combo-title {
        font-size: 1.5rem;
    }
    
    .mission-text h2 {
        font-size: 1.8rem;
    }
    
    .mission-text h3 {
        font-size: 1.3rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .timer-count {
        font-size: 2rem;
    }
    
    .price-card {
        padding: 30px 20px;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}
