/* Variáveis CSS otimizadas */
:root {
    --primary-color: #3F51B5;
    --secondary-color: #7986CB;
    --accent-color: #303F9F;
    --text-color: #333;
    --light-bg: #E8EAF6;
    --white: #ffffff;
    --success-color: #4CAF50;
    --error-color: #f44336;
    --gradient-start: #7986CB;
    --gradient-end: #303F9F;
}

/* Reset global */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    padding-top: 35px;
    width: 100%;
    position: relative;
}

/* Ajustes gerais para prevenir overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reset básico para prevenir scroll horizontal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1140px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
}

/* Hero Section */
.hero {
    padding: 60px 0 60px;
    background: linear-gradient(135deg, #3F51B5 0%, #303F9F 100%);
    position: relative;
    overflow: hidden;
    color: white;
    margin-bottom: 0;
}

/* Estilos do Escudo Flutuante - Nova implementação */
#escudo-container {
    position: relative;
    height: 200px;
    margin-top: -90px;
    margin-bottom: -30px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

#escudo-imagem {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

/* Ajuste para dispositivos móveis */
@media (max-width: 767px) {
    #escudo-imagem {
        width: 150px;
    }
    
    #escudo-container {
        height: 140px;
        margin-top: -60px;
        margin-bottom: -30px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Adicionando a imagem de florais como background de forma otimizada */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, #1A237E 0%, #3F51B5 50%, #7986CB 100%);
    z-index: 0;
    opacity: 0.8;
    will-change: transform;
}

.hero .row {
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-bottom: 20px;
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-align: left;
}

.hero .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-align: left;
}

.hero .lead br {
    content: "";
    display: block;
    margin: 15px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

/* Media queries otimizadas */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 0;
    }

    .hero-content {
        padding-bottom: 10px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero .lead {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .video-container {
        margin: 10px 0 0;
    }

    .hero .row > [class*="col-"] {
        padding: 0;
    }
    
    /* Removendo espaços e margens desnecessárias em mobile */
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
    
    section {
        padding: 30px 0;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 0.95rem;
    }
}

/* Grid system simplificado */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-3, .col-md-4, .col-md-6, .col-lg-6, .col-lg-8 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

/* Otimizar utilidades comuns */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.d-none {
    display: none;
}

.d-lg-block {
    display: none;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block;
    }
    .d-lg-none {
        display: none;
    }
}

/* Estatísticas */
.stats-section {
    padding: 30px 0;
    background-color: var(--white);
}

.stat-card {
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background-color: var(--white);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-card p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.g-4 {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.g-4 > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

/* Cards otimizados */
.recurso-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .recurso-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

.recurso-card img {
    max-width: 80px;
    margin: 0 auto 1rem;
}

/* Otimizações para imagens e mídia */
.slider-container {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.slider-track {
    display: flex;
    animation: slider 20s linear infinite;
    width: calc(250px * 10);
}

.slide {
    width: 250px;
    padding: 0 15px;
}

.slider-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@keyframes slider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5));
    }
}

/* Otimização para dispositivos de baixa memória - reduzir animações em dispositivos móveis */
@media (max-width: 768px) {
    .slide {
        width: 200px;
    }
    
    .slider-track {
        width: calc(200px * 10);
        animation-duration: 15s;
    }
    
    @keyframes slider {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 5));
        }
    }
}

/* Espaçamento adicional para mobile */
.spacer-mobile {
    display: none;
}

@media (max-width: 768px) {
    .spacer-mobile {
        display: block;
        height: 50px;
    }
}

/* Banner de promoção */
.banner {
    background-color: #FF7F00;
    overflow: hidden;
    width: 100%;
    padding: 8px 0;
    margin: 0;
}

.marquee {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Botões de ação */
.action-button {
    display: inline-block;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

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

/* Responsividade para botões */
@media (max-width: 768px) {
    .action-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Versão mais leve das animações */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Formulários simplificados */
input, textarea, select {
    display: block;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

button[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: var(--accent-color);
}

/* Footer otimizado */
.footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
}

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

.footer a:hover {
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    max-width: 150px;
}

@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-brand img {
        margin: 0 auto;
    }
}

/* Estilo aprimorado para o texto de copyright no rodapé */
.footer p.mb-0 {
    color: #333333;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Para garantir que seja bem legível em fundos escuros */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2));
    z-index: 0;
}

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

/* Restante do código */
.video-section {
    padding: 60px 0 80px;
    background: var(--light-bg);
    text-align: center;
}

.video-container {
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0 60px;
    }
    
    .video-container {
        margin-bottom: 30px;
    }
}

.kit-section {
    padding: 40px 0;
    background: var(--light-bg);
    position: relative;
}

.kit-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
    text-transform: uppercase;
}

.kit-features.card {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: none;
    background: #fff;
}

.kit-features .card-body {
    padding: 2rem 1rem;
}

.kit-features .feature-list {
    list-style: none;
    padding: 0 0 0 1.5rem;
    margin: 0;
}

.kit-features .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    padding: 0.5rem 0;
}

.kit-features .feature-list li i {
    color: var(--primary-color);
    margin-right: 1.2rem;
    font-size: 1.2rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Recursos Section */
.recursos-section {
    padding: 20px 0 80px;
    margin-top: 0;
}

.recurso-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.recurso-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.recurso-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.row.justify-content-center {
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.col-md-4 {
    flex: 0 0 auto;
    width: calc(33.333% - 1rem);
    min-width: 280px;
}

@media (max-width: 992px) {
    .row.justify-content-center {
        flex-wrap: wrap;
    }
    
    .col-md-4 {
        width: calc(50% - 1rem);
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .col-md-4 {
        width: 100%;
    }
    
    .recurso-card {
        margin: 0.5rem 0;
    }
}

/* Planos Section */
.pricing-section {
    padding: 0 0 60px;
    background: white;
    position: relative;
}

.pricing-section .section-header {
    margin-bottom: 3rem;
}

.pricing-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--gradient-end);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.pricing-card.featured::before {
    content: "Mais Vantajoso";
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0 2rem;
    margin: 1rem 0;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    color: #666;
    font-size: 1rem;
}

.pricing-features ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features ul li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-features ul li i {
    color: #fff;
}

.bonus-title {
    color: var(--gradient-end) !important;
    margin-top: 2rem;
}

.pricing-features .bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features .bonus-list li {
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    position: relative;
}

.pricing-features .bonus-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.bonus-list li i {
    color: var(--gradient-end) !important;
}

.pricing-features .bonus-list li.separator,
.bonus-list li.separator {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.pricing-features .bonus-list li.separator i,
.bonus-list li.separator i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: calc(1.5rem + 5px);
}

.pricing-card.featured .bonus-list li.separator {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .pricing-features ul li.separator {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.pricing-footer {
    text-align: center;
    padding-top: 1rem;
}

.pricing-footer .btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #7986CB, #C2185B);
    border: none;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.pricing-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #FF8AB4, #D81B60);
    color: white;
}

.pricing-footer .btn:active {
    transform: translateY(0);
}

.payment-methods {
    margin-top: 0.5rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.payment-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.payment-icons i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.payment-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-option:hover {
    transform: translateX(5px);
}

.payment-option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    width: 32px;
    text-align: center;
}

.payment-option .payment-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.payment-option span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.payment-option small {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 768px) {
    .payment-methods {
        max-width: 100%;
    }
    
    .payment-option {
        padding: 0.8rem 1rem;
    }
    
    .payment-option i {
        font-size: 1.8rem;
        margin-right: 1.2rem;
        width: 28px;
    }
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

/* Testimonials */
.depoimentos-section {
    background: linear-gradient(135deg, #3F51B5 0%, #303F9F 100%);
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.depoimentos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4H6zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.depoimentos-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.church-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.person-info {
    font-size: 0.85rem;
    color: #666;
    margin: 0.2rem 0;
    font-style: italic;
}

.rating {
    color: #ffc107;
    font-size: 0.8rem;
    margin-top: 0.2rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.testimonials-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
    gap: 2rem;
    -webkit-overflow-scrolling: touch;
}

.testimonials-row::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.faq-spacing {
    height: 400px;
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-container {
        margin-bottom: 60px;
    }
    
    .faq-spacing {
        height: 300px;
    }
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background-color: rgba(255,107,107,0.05);
}

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

/* Estilos aprimorados para a seção FAQ */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section .row.justify-content-center {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.faq-section .col-lg-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 20px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Responsividade para FAQ */
@media (max-width: 768px) {
    .faq-container {
        width: 95%;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Outras Lições Section */
.outras-licoes-section {
    padding: 20px 0;
    background-color: var(--light-bg);
}

.outras-licoes-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.licao-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.licao-card:hover {
    transform: translateY(-5px);
}

.licao-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.licao-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.licao-content {
    padding: 20px;
}

.licao-content h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Garantia Section */
.garantia-section {
    padding: 60px 0;
    background-color: white;
}

.garantia-section h2 {
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

.garantia-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.garantia-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.garantia-content img {
    max-width: 150px;
    margin: 20px auto;
    display: block;
}

.garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0;
    text-align: center;
    background-color: white;
}

.garantia-img {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.garantia p {
    max-width: 500px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .garantia {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .garantia-img {
        width: 150px;
    }

    .garantia p {
        font-size: 1.1rem;
    }
}

/* Escassez Section */
.escassez-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FF7F00 0%, #FF4500 100%);
    color: white;
    margin-bottom: 60px;
}

.escassez-section h2 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.escassez-section .periodo {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    color: white;
}

.escassez-section .periodo span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.escassez-section .periodo i {
    color: white;
}

.escassez-content {
    text-align: center;
    padding: 30px;
}

.escassez-content h2 {
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.escassez-content .periodo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: white !important;
}

.escassez-content .periodo span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
}

.escassez-content .periodo i {
    color: white !important;
}

.escassez-content .periodo .data-inicio,
.escassez-content .periodo .data-atual {
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 25px;
    margin-left: 0.5rem;
    color: white !important;
}

@media (max-width: 768px) {
    .escassez-content h2 {
        font-size: 1.8rem;
    }

    .escassez-content .periodo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .escassez-content .periodo span {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Footer */
.footer {
    background: var(--light-bg);
    padding: 60px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    width: 100%;
}

.footer-brand img {
    width: auto;
    height: 40px;
    flex: 0 0 auto;
    display: block;
}

.footer-brand p {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: #666;
    flex: 1;
    white-space: normal;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

.social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 0.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.social-links .facebook:hover {
    color: #1877f2;
}

.social-links .instagram:hover {
    color: #e4405f;
}

.social-links .youtube:hover {
    color: #ff0000;
}

.social-links .tiktok:hover {
    color: #000000;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

hr {
    margin: 2rem 0;
    opacity: 0.1;
}

/* Estilo do botão pulsante */
.pulse-button {
    position: relative;
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.7);
    transform: scale(1);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.pulse-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(var(--bs-primary-rgb), 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
    }
}

/* Igrejas Slider */
.igrejas-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
    width: 100%;
}

.igrejas-section h2 {
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 700;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    animation: slide 20s linear infinite;
    width: max-content;
}

.slide {
    flex: 0 0 auto;
    margin: 0 15px;
}

.slider-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.stats-section {
    padding: 40px 0;
    background-color: white;
    width: 100%;
    overflow: hidden;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.marquee-banner {
    background-color: #ff9900;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    flex-wrap: nowrap;
    animation: marquee 60s linear infinite !important;
    width: 100%;
    overflow: hidden;
}

.marquee-item {
    margin-right: 20px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 10px 0;
        padding-top: 0;
        padding-bottom: 0;
    }

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

    .section-padding {
        padding: 20px 0;
    }

    .plano-card.destaque {
        transform: none;
        margin: 1.5rem 0;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 10px 0;
    }
    
    .hero .btn {
        margin-bottom: 1.5rem;
    }

    .video-container {
        margin-top: 1rem;
    }
}

/* Estilos para o carregamento otimizado de vídeos */
.lite-youtube-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    background-color: #000;
}

.youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.youtube-player::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.youtube-player:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    transition: all 0.3s ease;
}

.youtube-player:hover .play-button {
    background-color: #ff0000;
}

.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #ffffff;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    transition: opacity 0.5s ease;
    border-radius: 10px;
}

/* Otimizações para mobile */
@media (max-width: 768px) {
    .play-button {
        width: 48px;
        height: 36px;
    }

    .play-button::before {
        border-width: 8px 0 8px 12px;
    }
}

/* Otimização para dispositivos com preferência por redução de movimento */
@media (prefers-reduced-motion: reduce) {
    .youtube-player,
    .youtube-player::before,
    .play-button,
    .play-button::before,
    .youtube-player iframe {
        transition: none;
    }
    
    .video-loader {
        animation: none;
    }
}

/* Ordem dos elementos no mobile */
.mobile-kit-order {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .mobile-kit-order {
        flex-direction: column;
    }
    
    .order-image {
        order: 1;
        width: 100%;
    }
    
    .order-text {
        order: 2;
        width: 100%;
    }
    
    .order-list {
        order: 3;
        width: 100%;
        margin-left: 0;
    }
    
    .kit-features.card {
        margin-top: 1rem;
    }
}

/* Estilos básicos */
.kit-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Botão primário */
.btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #25d366;
    color: white;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-button:hover {
    background-color: #20bd5b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    color: white;
}

.whatsapp-button i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .whatsapp-button {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.old-price {
    color: #666;
    font-size: 1.1rem;
}

.old-price .label {
    margin-right: 0.5rem;
    font-weight: 500;
}

.old-price .value {
    text-decoration: line-through;
    opacity: 0.8;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.current-price .label {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.current-price .value {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .current-price .value {
        font-size: 2rem;
    }
    
    .current-price .label {
        font-size: 1.2rem;
    }
    
    .old-price {
        font-size: 1rem;
    }
}

.testimonials-section {
    padding: 12rem 0 4rem;
    background: var(--light-bg);
}

.testimonials-section h2 {
    margin-bottom: 4rem;
    padding-top: 5rem;
}

.payment-methods {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.payment-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    text-align: left;
    padding-left: 0.5rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-option:hover {
    transform: translateX(5px);
}

.payment-option i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.payment-option .payment-info {
    display: flex;
    flex-direction: column;
}

.payment-option span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.payment-option small {
    font-size: 0.75rem;
    color: #666;
}

@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .payment-option {
        padding: 0.7rem;
    }
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    padding-top: 35px;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.old-price {
    color: #666;
    font-size: 1.1rem;
}

section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

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

@media (max-width: 768px) {
    .container-fluid,
    .container {
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    [class*="col-"] {
        padding: 15px;
    }
}

.faq-section {
    padding: 60px 0;
    background: var(--light-bg);
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255,107,107,0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

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

.faq-answer {
    display: none;
    padding: 1.25rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Estilos para cards e seções */
.card {
    height: 100%;
    margin-bottom: 30px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: white;
}

.card-body {
    padding: 1.5rem;
}

section {
    position: relative;
    padding: 60px 0;
    background: var(--light-bg);
    overflow: visible;
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    background: inherit;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .card {
        height: auto !important;
        margin-bottom: 2rem !important;
        transform: none !important;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    [class*="col-"] {
        padding: 15px;
    }
    
    section {
        padding: 40px 0;
        margin-bottom: 0;
    }
    
    .section-content {
        position: relative;
        z-index: 2;
        background: var(--light-bg);
    }
    
    .hero-section,
    .features-section,
    .pricing-section,
    .faq-section {
        position: relative;
        z-index: 1;
    }
    
    .hero-content,
    .features-content,
    .pricing-content,
    .faq-content {
        background: inherit;
        position: relative;
        z-index: 2;
    }
    
    /* Previne sobreposição de elementos */
    .container {
        position: relative;
        z-index: 2;
    }
    
    .aos-animate {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Estilos das seções de estatísticas e recursos */
.statistics-section,
.features-section {
    position: relative;
    padding: 60px 0;
    background: var(--light-bg);
    overflow: visible;
    z-index: 1;
}

.statistics-content,
.features-content {
    position: relative;
    z-index: 2;
}

.statistics-card,
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 3;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .statistics-section,
    .features-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .statistics-card,
    .feature-card,
    .card {
        margin-bottom: 20px;
        transform: none !important;
    }

    .row > [class*="col-"] {
        margin-bottom: 20px;
    }

    /* Desativa animações no mobile */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Previne sobreposição */
    .section-wrapper {
        position: relative;
        z-index: 1;
        background: var(--light-bg);
    }

    .section-content {
        position: relative;
        z-index: 2;
        background: var(--light-bg);
    }

    .container {
        position: relative;
        z-index: 3;
    }

    .row {
        position: relative;
        z-index: 4;
    }

    /* Ajuste específico para cards */
    .card {
        position: relative;
        z-index: 5;
        margin-bottom: 20px !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Reset para todas as seções */
section {
    position: relative;
    padding: 60px 0;
    background: var(--light-bg);
    overflow: visible;
    z-index: 1;
}

section + section {
    margin-top: 0;
}

/* Container e Row ajustes */
.container {
    position: relative;
    z-index: 2;
}

.row {
    position: relative;
    z-index: 2;
    margin-left: -15px;
    margin-right: -15px;
}

/* Cards base */
.card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 3;
    margin-bottom: 30px;
}

/* Específico para estatísticas e recursos */
.statistics-section,
.features-section {
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

.statistics-card,
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 3;
    margin-bottom: 30px;
}

/* Mobile ajustes */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .statistics-section,
    .features-section {
        padding-bottom: 20px;
    }

    .statistics-card,
    .feature-card,
    .card {
        margin-bottom: 20px;
        height: auto !important;
    }

    .row > [class*="col-"] {
        margin-bottom: 20px;
    }

    /* Força o background em elementos sobrepostos */
    .statistics-section *,
    .features-section * {
        background-color: inherit;
    }

    /* Remove transformações e transições */
    .card,
    .statistics-card,
    .feature-card {
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    /* Ajusta espaçamento vertical */
    .row + .row {
        margin-top: 0;
    }
}

.spacer-mobile {
    display: none;
}

@media (max-width: 768px) {
    .spacer-mobile {
        display: block;
        height: 60px;
    }

    .hero {
        padding: 60px 0 0;
    }

    .video-container {
        margin: 10px 0 0;
    }
}

.banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(135deg, #3F51B5 0%, #303F9F 100%);
    overflow: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee {
    background-color: #FF7F00;
    padding: 8px 0;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding-left: 100%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Ajuste para o padding-top do body */
body {
    padding-top: 35px;
}

/* Ajuste para elementos fixos que dependem do topo */
.navbar-fixed {
    top: 35px;
}

/* Estilos para o componente accordion do Bootstrap usado na seção FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(226, 158, 184, 0.3) !important;
    border-radius: 8px !important;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(226, 158, 184, 0.2);
    transform: translateY(-2px);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    padding: 1.2rem 1.5rem !important;
    background-color: white !important;
    color: var(--text-color) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    box-shadow: none !important;
    border: none !important;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background-color: rgba(226, 158, 184, 0.1) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(226, 158, 184, 0.5) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23E91E63' viewBox='0 0 16 16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23003' viewBox='0 0 16 16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
}

.accordion-body {
    padding: 1.5rem !important;
    background-color: #E8EAF6;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    border-top: 1px solid rgba(226, 158, 184, 0.3);
}

.accordion-collapse {
    transition: all 0.3s ease-in-out;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Estilização responsiva para o FAQ */
@media (max-width: 768px) {
    .accordion {
        padding: 0 1rem;
    }
    
    .accordion-button {
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    
    .accordion-body {
        padding: 1.2rem !important;
        font-size: 0.95rem;
    }
}

/* Estilos para a seção de recursos atualizada */
.card-icon-fa {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card-icon-fa i {
    font-size: 32px;
    transition: color 0.3s ease;
}

/* Ajuste na seção de recursos */
.recursos-section {
    padding: 60px 0;
    background-color: var(--light-bg);
    overflow: visible;
}

.recursos-section .container {
    max-width: 1200px;
    padding: 0 15px;
}

/* Layout da grade dos recursos */
.recursos-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
}

.recursos-section .col-md-3 {
    width: 25%;
    padding: 0 15px 30px;
    box-sizing: border-box;
}

/* Responsividade para a seção de recursos */
@media (max-width: 992px) {
    .recursos-section .col-md-3 {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .recursos-section .col-md-3 {
        width: 100%;
    }
    
    .recursos-section {
        padding: 40px 0;
    }
}

/* Estilo base para os cards de recursos */
.recurso-card {
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: white;
}

.recurso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Fundos em tons pastel para cada card */
.recurso-visual {
    background-color: #fcf9ff; /* Lavanda pastel ultra suave */
}

.recurso-visual .card-icon-fa i {
    color: #b77fd8; /* Roxo bem mais suavizado */
}

.recurso-material {
    background-color: #f9fcff; /* Azul céu pastel ultra suave */
}

.recurso-material .card-icon-fa i {
    color: #7cc0f1; /* Azul bem mais suavizado */
}

.recurso-temas {
    background-color: #f9fff9; /* Verde menta pastel ultra suave */
}

.recurso-temas .card-icon-fa i {
    color: #6fd49e; /* Verde bem mais suavizado */
}

.recurso-suporte {
    background-color: #fffcf9; /* Pêssego pastel ultra suave */
}

.recurso-suporte .card-icon-fa i {
    color: #f4bc8e; /* Laranja bem mais suavizado */
}

/* Otimização para dispositivos de baixa performance */
@media (prefers-reduced-motion: reduce) {
    .recurso-card, .card-icon-fa, .card-icon-fa i {
        transition: none;
    }
}

/* Centralização aprimorada para cards de preço */
.pricing-section .row.justify-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section .col-lg-5 {
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .pricing-card {
        max-width: 400px;
        margin: 0 auto 20px;
    }
}

/* Estilos melhorados para a seção de contato com melhor contraste */
.contato-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FF4500 0%, #FF7F00 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.contato-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.contato-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.contato-section p.destaque {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: inline-block;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #25d366;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-button:hover {
    background-color: #20bd5b;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    color: white;
}

.whatsapp-button i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .contato-section {
        padding: 40px 0;
    }
    
    .contato-section h2 {
        font-size: 1.8rem;
    }
    
    .contato-section p.destaque {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .whatsapp-button {
        padding: 0.8rem 1.5rem;
    }
}

/* Estilos para a nova seção de preços lado a lado */
.side-by-side-pricing {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f9f9f9, #fff);
    position: relative;
    overflow: hidden;
}

.side-by-side-pricing h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.pricing-flex-item {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    transition: all 0.3s ease;
    position: relative;
}

/* Destaque para o plano em destaque */
.pricing-flex-item.featured {
    transform: scale(1.02);
    z-index: 1;
}

.pricing-flex-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.pricing-flex-item.featured .pricing-flex-card {
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.2);
    border: 1px solid #ffcdd2;
}

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

.best-value-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
}

.pricing-flex-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, #fdfdfd, #f5f5f5);
    border-bottom: 1px solid #f0f0f0;
}

.pricing-flex-item.featured .pricing-flex-header {
    background: linear-gradient(to bottom, #fff9f9, #fff3f3);
    border-bottom: 1px solid #ffebee;
}

.pricing-flex-header h3 {
    margin: 0 0 15px;
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-flex-item.featured .pricing-flex-header h3 {
    color: var(--primary-color);
}

.pricing-flex-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.old-price {
    text-decoration: line-through;
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

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

.price-info {
    font-size: 0.85rem;
    color: #666;
}

.pricing-flex-features {
    padding: 20px;
    flex-grow: 1;
}

.pricing-flex-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-flex-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-flex-features li i {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 3px;
}

.pricing-flex-features li strong {
    font-weight: 600;
    color: #333;
}

.pricing-flex-footer {
    padding: 20px;
    text-align: center;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.pricing-flex-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.pricing-flex-button:hover {
    background: #C2185B;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.featured-button {
    background: #4CAF50;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.featured-button:hover {
    background: #3d8b40;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

.payment-methods-small {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #777;
}

.payment-methods-small span {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Estilos específicos para mobile que mantêm o layout lado a lado */
@media (max-width: 768px) {
    .pricing-flex-container {
        flex-direction: row;
        padding: 0 10px;
    }
    
    .pricing-flex-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .pricing-flex-header h3 {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .price-info {
        font-size: 0.75rem;
    }
    
    .pricing-flex-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .pricing-flex-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .best-value-tag {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    /* Estilos especiais para telas muito pequenas */
    @media (max-width: 400px) {
        .pricing-flex-header h3 {
            font-size: 1.1rem;
        }
        
        .price-value {
            font-size: 1.4rem;
        }
        
        .pricing-flex-features li {
            font-size: 0.75rem;
            padding: 5px 0;
        }
    }
}

/* Animação especial para chamar atenção para o botão do plano em destaque */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.5);
    }
    100% {
        box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
    }
}

.featured-button {
    animation: pulse 2s infinite;
}
