/* Estilos globais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}

.section {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px; /* Evita que o conteúdo vá além da tela */
    box-sizing: border-box; /* Garante que o padding seja incluído no tamanho total da div */
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Esconde a rolagem horizontal */
}

/* Seção Hero */
.hero {
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
    height: 464px;
}

/* Container do Vídeo */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: cover;
    z-index: 1;
}

/* Estilo do Vídeo */
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Conteúdo da Hero */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

/* Estilo do Título */
.hero h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ff4c4c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Estilo do Botão */
.cta-btn {
    background-color: #ff4c4c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    animation: pulse 1.5s infinite;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #cc3a3a;
}

/* Efeito de Pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 76, 76, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 76, 76, 1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 76, 76, 0.5);
    }
}

/* Estilo de benefícios */
.benefits-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #383838;
    color: #fff;
}

.benefits-container {
    display: flex;
    max-width: 1400px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.product-image img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.benefits-text {
    flex: 1;
    text-align: left;
}

.benefits-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff4c4c;
}

.benefits-text ul {
    list-style: none;
    padding: 0;
}

.benefits-text ul li {
    font-size: 20px;
    margin: 10px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.benefits-text ul li img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

/* Seção de Depoimentos */
.testimonials {
    background-color: #333;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.testimonials h2 {
    color: #ff4c4c;
    margin-bottom: 20px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease; /* Adiciona uma transição suave */
    width: calc(33.33% * 9); /* 9 é o número total de depoimentos; ajuste conforme necessário */
}

.testimonial {
    flex: 1 0 33.33%; /* Cada depoimento ocupará 1/3 da largura do contêiner */
    box-sizing: border-box;
    padding: 20px;
    margin: 0 10px; /* Espaçamento entre os depoimentos */
    background-color: #333;
    color: white;
    border-radius: 10px;
    text-align: center;
    min-width: 33.33%;
}

.testimonial img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}
.carousel-container {
    overflow: hidden; /* Garante que apenas os depoimentos visíveis fiquem na tela */
    width: 100%; /* Ajusta a largura do carrossel */
    display: flex;
    justify-content: center;
}

/* Ajuste a posição dos botões */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 98%;
    z-index: 2; /* Garante que os botões fiquem acima do conteúdo */
    pointer-events: none; /* Garante que os botões não bloqueiem o conteúdo ao redor */
}

/* Ajuste individual dos botões para interação */
.carousel-controls button {
    background-color: transparent;
    border: none;
    color: #ff4c4c;
    font-size: 24px;
    cursor: pointer;
    display: none;
    pointer-events: all; /* Habilita a interação com os botões */
    z-index: 2;
}

.carousel-controls button:hover {
    color: #cc3a3a;
}

/* Seção de Produtos */
.product-options {
    background-color: #222;
    padding: 40px 20px;
}

.product-header {
    text-align: center;
    margin-bottom: 30px;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #ff4c4c;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Alterações nas descrições dos produtos */
.product-card .old-price {
    font-size: 18px;
    color: #bbb;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.product-card .price {
    font-size: 24px;
    color: #ff4c4c;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-card .unit-price {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.product-card .payment-info {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.product-card button {
    background-color: #ff4c4c;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    animation: pulse 1.5s infinite;
}

.product-card button:hover {
    background-color: #cc3a3a;
}

/* Seção de FAQ */
.faq {
    background-color: #333;
    padding: 40px 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    color: #ff4c4c;
}

.faq-item p {
    font-size: 16px;
    color: #bbb;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 10px 0;
}

footer p {
    margin: 0;
    font-size: 14px;
    color: #bbb;
}

footer a {
    color: #ff4c4c;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* MEDIA QUERY para telas menores */
@media (max-width: 768px) {
    body, p, h1, h2, h3, h4, h5, h6 {
        font-size: 18px;
    }

    .product-container {
        flex-direction: column;
        gap: 10px;
    }

    .product-card {
        width: 90%;
    }

    .cta-btn {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }

    .product-card button {
        width: 100%;
    }
     /* Centralizar o conteúdo do carrossel */
     .carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(0);
        width: 100%; /* Garante que o carrossel ocupe a largura total no mobile */
    }

     /* Cada depoimento deve ocupar a tela inteira */
     .testimonial {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

      /* Ajuste de largura no container */
      .carousel-container {
        width: 100%; /* Garante que o container ocupe toda a largura */
        display: flex;
        justify-content: center;
        align-items: center;
    }


     /* Ajuste os controles do carrossel para ficar centralizado */
     .carousel-controls {
        width: 100%; /* Ajusta a largura dos controles no mobile */
        display: none;
        justify-content: space-between;
    }
}
    /* Centraliza e ajusta a largura da imagem no mobile */
    .product-image img {
        width: 100%;
        max-width: 300px;
        margin-right: 0;
    }

    .benefits-container {
        flex-direction: column;
    }

    .benefits-text {
        text-align: center;
        margin-top: 20px;
    }


/* MEDIA QUERY para smartphones (telas muito pequenas) */
@media (max-width: 480px) {
    body, p, h1, h2, h3, h4, h5, h6 {
        font-size: 16px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card button {
        padding: 12px;
        font-size: 16px;
    }

    /* Controle do tamanho das setas no carrossel */
    .carousel-controls button {
        font-size: 20px;
    }

    /* Ajuste ainda maior para smartphones */
    .product-image img {
        max-width: 250px;
    }

    .benefits-text h2 {
        font-size: 24px;
    }

    .benefits-text ul li {
        font-size: 18px;
    }
}

/* Aplicar efeito de pulsação em todos os botões */
button {
    animation: pulse 1.5s infinite;
}

/* Estilos gerais do pop-up */
.popup {
    display: none; /* Ocultado por padrão */
    position: fixed;
    z-index: 999; /* Aparece acima de outros conteúdos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fundo semi-transparente */
    overflow: auto; /* Permite rolagem se o conteúdo for grande */
}

.popup-content {
    background-color: #333; /* Segue o tema escuro */
    margin: 10% auto; /* Centraliza verticalmente */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Responsivo */
    max-width: 600px; /* Limita a largura máxima */
    border-radius: 10px;
}

.popup h2 {
    color: #ff4c4c;
    text-align: center;
}

.popup-scroll {
    max-height: 500px; /* Limita a altura para pop-ups longos */
    overflow-y: auto; /* Adiciona barra de rolagem */
    padding: 10px;
    background-color: #222; /* Fundo escuro para o texto */
    color: #fff;
}

.popup p {
    line-height: 1.6;
}

/* Botão de fechar */
.close {
    color: #ff4c4c;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
    }
}

/* Estilos da seção Promessa */
.promessa {
    background-color: #2a2a2a;
    padding: 40px 0;
}

.beneficios-title {
    font-size: 28px;
    color: #ff5722;
    text-align: center;
    margin-bottom: 10px;
}

.sub-title {
    font-size: 20px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.beneficios-list .col-xl-3 {
    flex: 1 1 23%; /* Mantém as colunas alinhadas */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave */
}

.beneficios-list .col-xl-3:hover {
    transform: scale(1.05); /* Aumenta ligeiramente o tamanho */
    box-shadow: 0 10px 20px rgba(153, 153, 153, 0.2); /* Adiciona sombra para destaque */
}

@media (max-width: 768px) {
    .beneficios-list .col-xl-3:hover {
        transform: scale(1.03) translateY(-5px); /* Um efeito mais sutil em telas menores */
        box-shadow: 0 5px 10px rgba(248, 248, 248, 0.2);
    }
}

.benefit-title {
    font-size: 18px;
    color: #ff5722;
    margin-top: 10px;
}

.benefit-text {
    font-size: 16px;
    color: #A5844D;
    text-align: center;
}

.beneficios-list img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.beneficios-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Distribui as colunas igualmente */
    align-items: stretch; /* Garante que todas as colunas tenham a mesma altura */
    gap: 20px; /* Espaçamento entre as colunas */
}

/* Ajuste para telas menores (entre tablets e celulares) */
@media (max-width: 768px) {
    .beneficios-list .col-xl-3 {
        flex: 1 1 45%; /* Duas colunas lado a lado */
    }
}

/* Ajuste para smartphones */
@media (max-width: 480px) {
    .beneficios-list .col-xl-3 {
        flex: 1 1 100%; /* Uma coluna por linha */
    }
}

.div-btn .btn-chamada {
    padding: 15px 30px;
    font-size: 18px;
    text-transform: uppercase;
    background-color: #ff4c4c;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
}

.div-btn .btn-chamada:hover {
    background-color: #cc3a3a;
}

/* Para telas menores */
@media (max-width: 768px) {
    .div-btn .btn-chamada {
        width: 100%;
        padding: 12px;
    }
}

.payment-img, .secure-img {
    max-width: 380px;
    display: block;
    margin: 20px auto;
}

/* Media queries para tornar a seção responsiva */
@media (max-width: 768px) {
    .benefit-title {
        font-size: 16px;
    }
    .benefit-text {
        font-size: 14px;
    }
    .div-btn .btn-chamada {
        width: 100%;
    }
}

.payment-methods {
    text-align: center;
    margin-top: 20px;
}

.payment-img {
    width: 100%;
    max-width: 600px; /* Limita o tamanho máximo da imagem */
    height: auto;
    display: inline-block;
}

/* Seção de FAQ */
.faq {
    background-color: #333;
    padding: 40px 20px;
}

.faq h2 {
    color: #ff4c4c;
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Itens do FAQ */
.faq {
    text-align: center;
    padding: 40px 20px;
    background-color: #2a2a2a;
}
.faq-item p {
    font-size: 16px;
    color: #bbb;
    margin-top: 0;
    text-align: center;
}

.faq h2 {
    color: #ff4c4c;
    margin-bottom: 20px;
}

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

.faq-item {
    display: flex;
    flex-direction: column; /* Alinha o conteúdo em uma coluna */
    justify-content: center; /* Centraliza o conteúdo verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    text-align: center; /* Garante que o texto fique centralizado */
    background-color: #333; /* Cor de fundo da FAQ */
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 10px; /* Bordas arredondadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Efeito de sombra */
}

.faq-icon {
    background-color: #ff4c4c;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-weight: bold;
}

.hide-faq {
    display: none;
}

.faq-toggle-btn {
    background-color: #ff4c4c;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    border-radius: 5px;
}

.faq-item h3 {
    font-size: 18px;
    color: #ff4c4c; /* Cor vermelha para os títulos */
    margin-bottom: 10px; /* Espaço entre o título e o texto */
}

.faq-toggle-btn:hover {
    background-color: #cc3a3a;
}

@media (max-width: 768px) {
    .faq-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-icon {
        margin-bottom: 10px;
    }
}

.image-overlay {
    position: absolute;
    top: 0px; /* Ajuste a posição conforme necessário */
    right: 0px; /* Ajuste conforme necessário */
    left: auto;
    margin-left: auto; /* Centraliza a imagem horizontalmente */
    margin-right: auto;
    width: 80px; /* Tamanho da imagem */
    max-width: 50%; /* Garante que a imagem não ultrapasse o container */
    height: auto; /* Mantém a proporção da imagem */
    z-index: 2; /* Garante que a imagem fique sobre o container */
    display: block; /* Garante que a imagem seja visível */
    animation: pulse 1s infinite; /* Efeito de pulsação */
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .image-overlay {
        right: 5px;
        top: 2px; /* Ajusta a posição vertical */
        width: 60px; /* Reduz o tamanho da imagem */
    }
}

@media (max-width: 480px) {
    .image-overlay {
        right: 5px;
        top: 2px; /* Ajuste para dispositivos móveis */
        width: 40px; /* Reduz ainda mais o tamanho da imagem */
    }
}
/* Animação de Pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Aumenta ligeiramente o tamanho */
    }
    100% {
        transform: scale(1);
    }
}

.image-overlay-2 {
    position: absolute;
    top: 0; /* Ajuste a posição conforme necessário */
    right: 10px; /* Ajuste conforme necessário */
    left: auto;
    margin-left: auto; /* Centraliza a imagem horizontalmente */
    margin-right: auto;
    width: 80px; /* Tamanho da imagem */
    max-width: 40%; /* Garante que a imagem não ultrapasse o container */
    height: auto; /* Mantém a proporção da imagem */
    z-index: 2; /* Garante que a imagem fique sobre o container */
    display: block; /* Garante que a imagem seja visível */
    animation: pulse 1s infinite; /* Efeito de pulsação */
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .image-overlay-2 {
        right: 5px;
        top: 2px; /* Ajusta a posição vertical */
        width: 60px; /* Reduz o tamanho da imagem */
    }
}

@media (max-width: 480px) {
    .image-overlay-2 {
        right: 5px;
        top: 2px; /* Ajuste para dispositivos móveis */
        width: 40px; /* Reduz ainda mais o tamanho da imagem */
    }
}
/* Animação de Pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Aumenta ligeiramente o tamanho */
    }
    100% {
        transform: scale(1);
    }
}

/* Configuração do container do produto */
.product-card {
    position: relative; /* Necessário para que o position absolute da imagem funcione */
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    overflow: hidden; /* Garante que o conteúdo fique dentro do container */
    margin: 0 auto; /* Centraliza o card no container pai */
}

/* Ajustes para o container do produto em telas menores */
@media (max-width: 768px) {
    .product-card {
        width: 240px; /* Reduz a largura do container */
    }
}

@media (max-width: 480px) {
    .product-card {
        width: 200px; /* Reduz ainda mais a largura do container */
    }
}


