/* Estilos Globais */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #121212;
    color: #F5F5F5;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px; /* Reduzido o padding vertical global dos containers */
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px; /* Reduzido o margin-bottom dos h2 */
}

h3 {
    font-size: 1.5em;
    color: #70C945;
}

a {
    color: #70C945;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Para evitar espaços extras abaixo da imagem */
}

section {
    padding: 20px 0; /* Reduzido o padding vertical global das seções */
}

.cta-button {
    display: inline-block;
    background-color: #70C945;
    color: #000000; /* Texto preto para contraste com fundo verde */
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    border: none; /* Remover borda padrão se houver */
}

.cta-button:hover {
    background-color: #5db336; /* Um tom de verde um pouco mais escuro no hover */
    transform: translateY(-2px);
}

.intro-text {
    text-align: center;
    margin-bottom: 30px; /* Reduzido o margin-bottom do intro-text */
    font-size: 1.1em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Herói FINAL */
#hero-section-main {
    background-color: #121212; /* Fundo preto sólido */
    position: relative;
    padding-top: 20px; /* Padding reduzido para hero section */
    padding-bottom: 20px; /* Padding reduzido para hero section */
    text-align: center;
    min-height: auto; /* Altura automática baseada no conteúdo */
    overflow: hidden; /* Para conter elementos inesperados */
    margin-top: 0;
}

/* Logo no topo removido como marca d'água */

.top-logo {
    background-color: #121212;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 0;
}

.header-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    padding: 0 15px;
    box-sizing: border-box;
}

#hero-section-main .container {
    position: relative;
    z-index: 2;
}

#hero-section-main h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

#hero-section-main .subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#hero-section-main .social-proof {
    margin-top: 20px;
    font-size: 0.9em;
    color: #B0B0B0;
}

/* Seção de Vídeo de Transformação */
.video-transformation-section {
    background-color: #1a1a1a;
    padding: 40px 0; /* Reduzido o padding vertical */
}

.video-container {
    max-width: 320px; /* Tamanho reduzido para desktop */
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0; /* Removido qualquer padding */
    background-color: transparent; /* Fundo transparente para evitar espaço preto */
    line-height: 0; /* Remover espaço extra causado por line-height */
}

.video-container video {
    width: 100%;
    display: block; /* Garantir que o vídeo seja exibido como bloco */
    border: 2px solid #70C945;
    border-radius: 8px;
    margin: 0; /* Remover qualquer margem */
    background-color: transparent; /* Fundo transparente */
}

/* Customizações do Plyr */
.plyr {
    border-radius: 8px;
    overflow: hidden;
}

.plyr--video {
    background: transparent; /* Fundo transparente para o player */
}

.plyr__control--overlaid {
    display: none !important; /* Esconder o botão de play grande no centro */
}

/* Esconder elementos do Swiper (setas e paginação) GLOBALMENTE PRIMEIRO com alta especificidade */
body .swiper-button-next, 
body .swiper-button-prev, 
body .swiper-pagination,
.swiper-button-next, /* Regra global sem body para garantir */
.swiper-button-prev,
.swiper-pagination {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; 
    pointer-events: none !important; 
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important; 
    left: -99999px !important; /* Movido ainda mais para fora */
    top: -99999px !important; /* Movido ainda mais para fora */
}

/* Reforço para esconder QUALQUER elemento Swiper dentro da Hero Section */
#hero-section-main [class*="swiper-button"],
#hero-section-main [class*="swiper-pagination"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; 
    pointer-events: none !important; 
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important; 
    left: -99999px !important;
    top: -99999px !important;
}


/* --- O restante do CSS original abaixo --- */

/* Seção Dores/Problemas */
.problems-section {
    padding-top: 0; /* Remover padding superior para ficar mais próximo da seção anterior */
}

.problems-section .problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-bottom: 30px; /* Reduzido o margin-bottom */
}

.problem-item {
    background-color: #1f1f1f;
    padding: 25px;
    border-radius: 8px;
}

.icon-problem {
    font-size: 2.5em;
    color: #70C945;
    margin-bottom: 15px;
}

.problems-section .transition-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 30px; /* Reduzido o margin-top */
}

/* Seção Método e Benefícios */
.method-section .method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px; /* Reduzido o margin-bottom */
}

.method-item {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.icon-method {
    font-size: 2.8em;
    color: #70C945;
    margin-bottom: 20px;
}

.benefits-list h3 {
    text-align: center;
    font-size: 1.8em;
    color: #FFFFFF;
    margin-bottom: 25px; /* Reduzido o margin-bottom */
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefits-list li {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Estilo para as imagens de benefícios */
.benefit-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 3px solid #70C945;
}

.icon-benefit {
    font-size: 1.5em;
    color: #70C945;
    margin-bottom: 15px;
}

/* Seção Como Funciona */
.how-it-works-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    margin-bottom: 40px; /* Reduzido o margin-bottom */
}

.step-item span {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #70C945;
    margin-bottom: 10px;
}

.icon-step {
    font-size: 3em;
    color: #70C945;
    margin-bottom: 15px;
}

.how-it-works-section .secondary-cta {
    background-color: transparent;
    color: #70C945;
    border: 2px solid #70C945;
    margin-top: 30px;
}

.how-it-works-section .secondary-cta:hover {
    background-color: #70C945;
    color: #000000;
}

/* Seção Depoimentos - Swiper */
.testimonials-section .swiper-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px; /* Espaço para paginação */
    position: relative; /* Para posicionamento correto dos botões/paginação */
}

.testimonials-section .swiper-slide {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #70C945;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza conteúdo do slide */
    text-align: center; /* Centraliza texto do slide */
    min-height: 420px; /* Altura mínima para consistência */
    box-sizing: border-box; /* Para padding não aumentar o tamanho */
}

.testimonial-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid #70C945;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: bold;
    color: #70C945;
    margin-top: auto;
}

/* Restaurar visibilidade dos elementos Swiper APENAS na seção de depoimentos */
.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
    color: #70C945 !important; 
    display: flex !important; 
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: calc(var(--swiper-navigation-size, 44px) / 44 * 27) !important; 
    height: var(--swiper-navigation-size, 44px) !important; 
    position: absolute !important; 
    left: auto !important; 
    right: var(--swiper-navigation-sides-offset, 10px) !important; 
    top: 50% !important; 
    transform: translateY(-50%) !important; 
    z-index: 10 !important; /* Garantir que fiquem acima de outros elementos do slide */
}

.testimonials-section .swiper-button-prev {
    right: auto !important;
    left: var(--swiper-navigation-sides-offset, 10px) !important;
}

.testimonials-section .swiper-pagination {
    display: block !important; 
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
    position: absolute !important; 
    bottom: 10px !important; 
    left: 50% !important; 
    transform: translateX(-50%) !important; 
    z-index: 10 !important; /* Garantir que fiquem acima de outros elementos do slide */
}

.testimonials-section .swiper-pagination-bullet {
    background-color: #fff !important; /* Cor padrão para bullets inativos */
    opacity: 0.5 !important;
}

.testimonials-section .swiper-pagination-bullet-active {
    background: #70C945 !important; 
    opacity: 1 !important;
}


/* Seção Oferta */
.offer-section {
    background-color: #1f1f1f;
    margin-top: 0; /* Remover margin-top */
    padding-top: 0; /* Remover padding-top */
}

.offer-box {
    background-color: #121212;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #70C945;
}

.offer-highlight {
    background-color: #70C945;
    color: #000000;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.offer-highlight p strong {
    color: #000000;
}

.offer-price {
    font-size: 2.5em;
    font-weight: bold;
    color: #70C945;
    margin: 20px 0;
}

.offer-box .cta-button {
    margin: 20px 0;
}

.payment-info {
    font-size: 0.9em;
    margin-top: 20px;
}

/* Seção Locais e Horários */
.locations-section {
    padding: 0; /* Remover todo o padding da seção */
    margin-top: -20px; /* Margem negativa para aproximar da seção anterior */
}

.locations-section .container {
    padding-top: 0; /* Remover padding superior do container */
}

.locations-section h2 {
    margin-top: 0; /* Remover margin-top do título */
    padding-top: 10px; /* Pequeno padding no topo apenas para o título */
}

.locations-section .intro-text {
    margin-bottom: 20px; /* Reduzir margin-bottom do texto introdutório */
}

.locations-section .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Reduzido o gap */
    margin-bottom: 20px; /* Reduzido o margin-bottom */
}

.location-item {
    background-color: #1f1f1f;
    padding: 25px; /* Reduzido o padding */
    border-radius: 8px;
    text-align: center; 
}

.location-img {
    width: 100%; 
    max-height: 200px; 
    object-fit: cover; 
    border-radius: 6px; 
    margin-bottom: 15px; /* Reduzido o margin-bottom */
}

.location-item h3 {
    text-align: center; 
    margin-bottom: 15px; /* Reduzido o margin-bottom */
}

.location-item h3 .icon-location {
    margin-right: 10px;
}

.location-item ul {
    list-style: none;
    padding: 0;
    text-align: left; 
    display: inline-block; 
}

.location-item ul li {
    margin-bottom: 8px;
}

.locations-section .note, .locations-section .instructions {
    text-align: center;
    font-size: 0.95em;
    margin-top: 15px; /* Reduzido o margin-top */
}

/* Seção FAQ */
.faq-section {
    background-color: #121212;
    padding-bottom: 0; /* Remover padding inferior */
    margin-bottom: -30px; /* Margem negativa para aproximar da próxima seção */
}

.faq-section .container {
    padding-bottom: 0; /* Remover padding inferior do container */
}

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

.faq-item {
    background-color: #1f1f1f;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 3px solid #70C945;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #FFFFFF;
}

.faq-question i {
    color: #70C945;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Seção CTA Final */
.final-cta-section {
    background-color: #70C945;
    color: #000000;
}

.final-cta-section h2 {
    color: #000000;
}

.final-cta-section .intro-text {
    color: #121212;
}

.final-cta-section .cta-button {
    background-color: #121212;
    color: #70C945;
    border: 2px solid #121212;
}

.final-cta-section .cta-button:hover {
    background-color: #000000;
    color: #70C945;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-info p a {
    color: #000000;
}

.contact-info p a:hover {
    text-decoration: underline;
}

.contact-info .fab, .contact-info .fas {
    margin-right: 8px;
}

/* Rodapé */
footer {
    background-color: #0a0a0a;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9em;
    color: #aaaaaa;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 15px;
}

footer p {
    margin-bottom: 8px;
}

footer a {
    color: #70C945;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .header-logo {
        max-width: 150px;
    }
    #hero-section-main h1 {
        font-size: 2.2em;
    }
    #hero-section-main .subtitle {
        font-size: 1.1em;
    }
    .cta-button {
        padding: 15px 25px;
        font-size: 1em;
    }
    h2 {
        font-size: 1.8em;
    }
    .problems-grid, .method-grid, .steps-grid, .locations-grid, .benefits-list ul {
        grid-template-columns: 1fr;
    }
    .testimonials-section .swiper-slide {
        min-height: 380px;
    }
    .location-img {
        max-height: 180px; 
    }
    .benefit-img {
        width: 150px;
        height: 150px;
    }
    .video-container {
        max-width: 100%; /* Ocupar toda a largura disponível em mobile */
    }
    section {
        padding: 15px 0; /* Reduzido ainda mais o padding vertical das seções para mobile */
    }
    .container {
        padding: 15px; /* Reduzido o padding dos containers em mobile */
    }
    .faq-section {
        padding-bottom: 0; /* Remover padding inferior */
        margin-bottom: -30px; /* Margem negativa para aproximar da próxima seção */
    }
    .locations-section {
        padding: 0; /* Remover todo o padding da seção */
        margin-top: -20px; /* Margem negativa para aproximar da seção anterior */
    }
    .locations-section .container {
        padding-top: 0; /* Remover padding superior do container */
    }
}

@media (max-width: 480px) {
    .header-logo {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .top-logo {
        padding: 10px 0;
    }
    #hero-section-main h1 {
        font-size: 1.8em;
    }
    #hero-section-main .subtitle {
        font-size: 1em;
    }
    .container {
        padding: 10px; /* Reduzido ainda mais o padding dos containers em mobile pequeno */
    }
    section {
        padding: 10px 0; /* Reduzido ainda mais o padding vertical das seções para mobile pequeno */
    }
    .testimonial-img {
        width: 110px;
        height: 110px;
    }
    .testimonials-section .swiper-slide {
        min-height: 350px;
        padding: 20px;
    }
    .location-img {
        max-height: 150px; 
    }
    .benefit-img {
        width: 120px;
        height: 120px;
    }
    .faq-section {
        padding-bottom: 0; /* Remover padding inferior */
        margin-bottom: -40px; /* Margem negativa maior para aproximar da próxima seção */
    }
    .locations-section {
        padding: 0; /* Remover todo o padding da seção */
        margin-top: -30px; /* Margem negativa maior para aproximar da seção anterior */
    }
}

/* Ajustes de Layout para Ícones em Desktop */
@media (min-width: 992px) {
    /* Seção Dores/Problemas (5 itens) - 3 em cima, 2 em baixo */
    .problems-section .problems-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px; 
    }
    .problems-section .problem-item {
        width: calc(33.333% - 20px); 
        max-width: 280px; 
        flex-grow: 0;
        flex-shrink: 0;
        margin-bottom: 20px;
    }

    /* Seção Método (5 itens) - 3 em cima, 2 em baixo */
    .method-section .method-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .method-section .method-item {
        width: calc(33.333% - 20px);
        max-width: 300px;
        flex-grow: 0;
        flex-shrink: 0;
        margin-bottom: 20px;
    }

    /* Seção Benefícios (5 itens) - 3 em cima, 2 em baixo */
    .benefits-list ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .benefits-list li {
        width: calc(33.333% - 20px);
        max-width: 300px;
        flex-grow: 0;
        flex-shrink: 0;
        margin-bottom: 20px;
    }

    /* Seção Como Funciona (4 itens) - 2 em cima, 2 em baixo */
    .how-it-works-section .steps-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .how-it-works-section .step-item {
        width: calc(50% - 30px);
        max-width: 400px;
        flex-grow: 0;
        flex-shrink: 0;
        margin-bottom: 30px;
    }
}

.locations-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

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

.location-item {
    background-color: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #70C945;
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
}

.location-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #70C945;
}

.location-item h3 {
    color: #FFFFFF;
    font-size: 1.5em;
    margin: 20px 20px 10px;
}

.schedule-list {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
}

.schedule-list li {
    color: #E0E0E0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.schedule-list li i {
    color: #70C945;
    margin-right: 10px;
}

.location-notes {
    margin-top: 30px;
    padding: 20px;
    background-color: #1f1f1f;
    border-radius: 8px;
    border-left: 5px solid #70C945;
}

.location-notes p {
    color: #E0E0E0;
    margin-bottom: 10px;
}

.location-notes p:last-child {
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para a seção de investimento */
.investment-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.investment-box {
    background-color: #1f1f1f;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #70C945;
    text-align: center;
}

.investment-box h3 {
    color: #FFFFFF;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.investment-box p {
    color: #E0E0E0;
    margin-bottom: 20px;
}

.guarantee-box {
    background-color: #70C945;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.guarantee-box h4 {
    color: #000000;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.guarantee-box p {
    color: #000000;
    margin-bottom: 0;
}

.price-box {
    margin: 30px 0;
}

.price-box h3 {
    color: #70C945;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.investment-cta {
    display: inline-block;
    margin: 20px 0;
    padding: 15px 30px;
    font-size: 1.2em;
}

.payment-note {
    font-size: 0.9em;
    color: #CCCCCC;
    margin-top: 15px;
}

.guarantee-section {
    margin-top: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 5px solid #70C945;
}

.guarantee-item i {
    color: #70C945;
    font-size: 2em;
    margin-right: 20px;
}

.guarantee-item h3 {
    color: #FFFFFF;
    font-size: 1.2em;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .investment-box {
        padding: 20px;
    }
    
    .guarantee-box, 
    .guarantee-item {
        padding: 15px;
    }
    
    .price-box h3 {
        font-size: 1.8em;
    }
    
    .investment-cta {
        padding: 12px 25px;
        font-size: 1.1em;
        width: 100%;
    }
}
