.logo {
    text-align: center;
    padding: 6px;
}
.logo img {
    padding-top: 20px;
    height: 60px;
}

h2 {
    padding: 10px;
}

.image-fade-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.image-fade-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Gradient overlay */
.image-fade-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; /* slightly taller fade */
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.8) 70%,
    #000 100%
    );
    pointer-events: none;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #f9f9f9;
}

.intro {
    max-width: 950px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
}

.container {
    margin: auto;
}
.section {
    text-align: center;
}
.section h2 {
    color: #ddd;
    font-size: 1.6rem;
}

.benefits,
.faq,
.bonus,
.testimonials {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto; /* This centers the block horizontally */
}
ul {
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
}

.cta-button {
    display: block;
    background: linear-gradient(135deg, #e360a0 0%, #e1338a 100%);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 30px auto;
    width: fit-content;
    max-width: 90%;
    box-shadow: 0 6px 16px rgba(255, 0, 128, 0.2);
}

footer {
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: #888;
    background: #0a0a0a;
}

footer::before {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, #e360a0, transparent);
    margin-bottom: 10px;
}


.formacao-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .logo img {
        height: 120px;
    }


    .formacao-wrapper {
        align-items: center;
    }

    .intro-photo {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .intro-photo img {
        width: auto;
        height: 5000px;
        object-fit: cover;       /* crops the image to fit */
    }

    .benefits {
        text-align: center;
    }
}


.intro-photo {
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-photo img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    align-self: center;
    border: 2px solid #1a1a1a;
}

.intro-text {
    flex: 2;
    padding: 40px 30px;
    max-width: 800px;
}

.intro-text h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
}

.intro-text h1::after {
    content: " — Seu corpo, seu ritmo, sua vitória.";
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 8px;
    color: #E360A0FF;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    padding: 5px 10px;
}

.mobile-divider {
    display: none;
}

@media (max-width: 768px) {
    .intro {
        flex-direction: column;
    }

    .intro-text {
        padding: 0 20px 0 20px;
        text-align: center;
    }

    .intro-text h1 {
        padding-top: 0;
    }
}

.testimonial-img {
    max-height: 500px;           /* Fixed display height */
    display: flex;
    justify-content: center;
    align-items: center;     /* Center the image vertically */
    overflow: hidden;        /* Prevent overflow scrollbars */
    background: #1a1a1a;        /* Optional letterbox background */
}

.testimonial-img img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;     /* Show the full image without cropping */
}

.testimonial-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 12px;
    scroll-snap-align: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    text-align: center;
    flex-shrink: 0;
    padding: 12px 12px;
    max-height: 650px;
}

/* Esconde no mobile */
@media (max-width: 767px) {
    .testimonial-card {
        width: calc(100% - 40px);     /* ocupa a tela inteira */
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always; /* ← ensures stop only at snap points */
        position: relative;
        box-sizing: border-box;
    }
}

@media (min-width: 767px) {
    .desktop-limit-width {
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    .testimonial-track {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px; /* optional */
        width: calc(3 * 360px + 2 * 80px); /* 3 cards + 2 gaps */
    }

    .testimonial-card {
        flex: 0 0 360px;
        scroll-snap-align: center;
        background: #1e1e1e;
        border-radius: 12px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        text-align: center;
        padding: 20px;
    }
}

.testimonial-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2px;
}

.testimonials-carousel {
    padding-top: 1px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 5px;
}

.carousel-indicators .dot {
    width: 10px;
    height: 10px;
    background: #888;
    border-radius: 50%;
    transition: background 0.3s;
}

.carousel-indicators .dot.active {
    background: #E360A0FF;
}
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px 0;
}

/* Botões laterais bonitos */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #E360A0FF;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.nav-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.nav-button.left {
    left: -16px;
}

.nav-button.right {
    right: -16px;
}

/* Esconde no mobile */
@media (max-width: 767px) {
    .nav-button {
        display: none;
    }
}

.price-box {
    background: linear-gradient(0deg, #2c0018 0%, #0c0106 100%) !important;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    padding: 10px;
    max-width: 375px;
}

.price-label {
    font-size: 2.5rem;
    color: #f0f0f0;
    margin: 0;
}

.price-label-sub {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin: 0;
    padding-bottom: 15px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #b80060;
    margin: 0;
}

.price-excluded {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.price-value-sub {
    font-size: 1.7rem;
    font-weight: bold;
    color: #b80060;
    margin: 0;
    margin-top: 2px;
}

.price-sub-top {
    font-size: 1.2rem;
    color: #e1e1e1;
    margin: 0;
}

.price-sub {
    font-size: 1rem;
    color: #e1e1e1;
    margin: 9px;
}

.formacao-blocos {
    text-align: center;
}

.blocos-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 0;
}

.bloco {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.icone {
    width: 60px;
    height: 60px;
    background: #e360a0;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 6px rgba(230, 0, 115, 0.5);
}

.bloco h3 {
    color: #ddd;
    font-size: 1.2rem;
}

.bloco p {
    font-size: 0.95rem;
    color: #ddd;
}

/* Layout em 3 colunas no desktop */
@media (min-width: 768px) {
    .blocos-container {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .bloco {
        flex: 1;
        max-width: 32%;
    }
}
.beneficios-simples {
    text-align: center;
    background: #15000c;
}

.plans::before {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, #e360a0, transparent);
    margin: 20px auto 15px;
}

.faq-section::before,
.formacao-blocos::after,
.beneficios-simples::before,
.beneficios-simples::after,
.line {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, #e360a0, transparent);
    margin: 20px auto 20px;
}

@media (max-width: 768px) {
    .intro-photo::before {
        content: "";
        display: block;
        height: 2px;
        width: 100%;
        background: linear-gradient(to right, transparent, #e360a0, transparent);
        margin: 1px auto 20px;
    }
}

.beneficios-simples h2 {
    color: #ddd;
    margin-bottom: 30px;
}

.beneficios-lista {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.beneficio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
}

.beneficio-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}


.beneficio-icon {
    background: #e360a0;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 0 6px rgba(230, 0, 115, 0.4);
}

.beneficio-item p {
    font-size: 1rem;
    color: #f0f0f0;
    margin: 0;
    max-width: 90%;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-feature {
    list-style: none;
    display: flex;
    justify-content: normal;
    gap: 10px;
    text-align: left;
    color: #ddd;
    padding-left: 40px;
    padding-right: 30px;
    align-items: center;   /* Align icon to the top */
}

.check-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ✔ rosa com ícone branco */
.price-feature.included .check-icon {
    background: #e360a0;
    color: white;
    top: -2px;
    position: relative;
}

.price-feature.excluded .excluded-text {
    text-decoration: line-through;
    color: #888;
}

.price-feature.excluded .check-icon {
    background: #444;
    color: white;
    top: -2px;
    position: relative;
}

.diferenca-diferenciais {
    padding: 0 20px 20px;
    max-width: 950px;
    margin: 0 auto;
}

.diferenca-diferenciais h2 {
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.diferenca-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
}

.diferenca-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 80%;
    font-weight: bold;
}

.diferenca-icon {
    font-size: 2rem;
    background: #e360a0;
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 12px;
    box-shadow: 0 0 6px rgba(230, 0, 115, 0.5);
}

.diferenca-item p {
    color: #ddd;
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 600px) {
    .diferenca-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .diferenca-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.faq-section {
    padding: 0 5px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
}

.faq {
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
}

.faq-item {
    background: #0a0a0a;
    border: 1px solid #e360a0;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item.open {
    box-shadow: 0 0 12px rgba(227, 96, 160, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #f9f9f9;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #222;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 20px;
    color: #ccc;
    font-size: 0.95rem;
}

.faq-answer a {
    color: #737373; /* Escolha a cor que quiser */
    text-decoration: none; /* remove o sublinhado */
    font-weight: 500;
}

.faq-answer a:hover {
    color: #737373; /* cor ao passar o mouse */
    text-decoration: underline; /* opcional */
}

.faq-item.open .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 16px;
}

.faq-item.open .faq-question {
    background: #0a0a0a;
    border-bottom: 1px solid #444;
    margin-bottom: 12px;
}

.faq-question .icon {
    width: 20px;
    height: 20px;
    fill: #e360a0;
    transition: transform 0.3s;
}

.faq-item.open .faq-question .icon {
    transform: rotate(180deg);
}

