:root {
    --primary-color: #ff4081;
    --secondary-color: #ff80ab;
    --accent-color: #f50057;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --success-color: #4CAF50;
    --error-color: #f44336;
}

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

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

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

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    position: relative;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    overflow-x: 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;
    }
}

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

.hero .row {
    margin: 0;
}

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

.hero h1 {
    font-size: 2.8rem;
    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 (max-width: 768px) {
    .hero {
        padding: 60px 0 0;
    }

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

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

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

    .video-container {
        margin: 10px 0 0;
        padding-bottom: 56.25%;
    }

    .hero .row > [class*="col-"] {
        padding: 0;
    }
}

.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, box-shadow 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;
}

.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: nowrap;
}

.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);
    }
}

@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, #ff8f00, #ff5722);
    border: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 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(255, 87, 34, 0.4);
    background: linear-gradient(135deg, #ff9f00, #ff6d3f);
    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, var(--primary-color) 0%, #ff6b00 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);
}

/* 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, var(--primary-color) 0%, #ff6b00 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;
}

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

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

.slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(600px * 4);
    align-items: center;
    height: 140px;
}

.slide {
    flex: 0 0 600px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slider-image {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.1) contrast(0.9);
    opacity: 0.9;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-600px * 2));
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    margin-top: -5rem;
    margin-bottom: -5rem;
    z-index: 2;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    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;
}

/* 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 separador */
.pricing-features ul li.separator {
    position: relative;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    margin-bottom: 0;
}

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

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

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.2;
}

.pricing-features ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
    margin: 0;
    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;
}

.contato-section {
    padding: 40px 0;
    padding-top: 120px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    text-align: center;
    z-index: 1;
    position: relative;
    color: white;
    margin-top: -40px;
    overflow: hidden;
}

.contato-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='%232a5298' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4H6zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

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

.contato-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.contato-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white;
}

.contato-content p.destaque {
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.kit-section h2,
.igrejas-section h2,
.recursos-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;
    margin: 0;
}

.kit-features .feature-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    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;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .kit-section .container {
        display: flex;
        flex-direction: column;
    }
    
    .kit-section h2 {
        order: 2;
        margin-top: 2rem;
    }
    
    .kit-section .row {
        order: 3;
    }
    
    .kit-section .col-lg-6:first-child {
        order: 1;
    }

    .kit-features.card {
        margin: 1.5rem 0.5rem;
    }

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

    .kit-features .feature-list li {
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        padding: 0.3rem 0;
    }

    .kit-features .feature-list li:last-child {
        margin-bottom: 0;
    }

    .kit-features .feature-list li i {
        margin-right: 1.2rem;
        font-size: 1.2rem;
    }
}

/* Removendo elementos não utilizados */
nav, header, .navbar {
    display: 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(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background-color: #22c35e;
    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-x: 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-x: 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-"] {
        padding: 15px;
    }

    /* 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, var(--primary-color) 0%, #ff6b00 100%);
    overflow: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee {
    height: 35px;
    line-height: 35px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    text-align: center;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: marquee 600s linear infinite; /* 10 minutos por ciclo */
}

@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;
}
