.sessao {
    width: 95%;
    max-width: 1240px;
    margin: 0 auto;
}

vturb-smartplayer {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0px 0px 25px 0px rgb(147 147 147 / 30%);
    box-sizing: border-box;
}

.faixa, #faixa-frete {
    background: var(--cor1);
}

.faixa-countdown {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

#countdown-timer {
    font-size: 3em;
    color: yellow;
}

#faixa-frete {

    img {
        width: 64px;
    }
}

.produtos {
    background: #eeeeee;
}

#free-shipping-banner {
    background: #eeeeee;
}

.free-shipping-card {
    border: 3px solid var(--cor1);
    border-radius: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0px;
    max-width: fit-content;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
}

.intro-offer-badge {
    justify-content: center;
    width: min(100%, 720px);
    padding: 12px 16px;
    border-radius: 999px;
    background: #edfdee;
    box-shadow: 0 14px 28px rgb(235 251 216);
}

.intro-offer-text {
    margin: 0;
    color: var(--cor1);
    font-size: 1.15em;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ship-icon {
    height: 100%;
    width: 112px;
    padding: 16px;
    background: var(--cor1);
    object-fit: contain;
    flex-shrink: 0;
}

.free-shipping-texto {
    flex: 1;
    text-align: left;
    padding: 12px;
}

.free-shipping-titulo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
}

.free-shipping-title .highlight {
    color: var(--cor1);
    font-weight: 700;
}

.free-shipping-subtitle {
    font-size: 0.9rem;
    margin: 0;
    color: #333;
}

/*#produtos1 .sessao {
    padding-top: 2rem;
    padding-bottom: 2rem;
}*/

.produto-card {
    border: 3px solid #e0e0e0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    &:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .price {
        font-size: 5em;
        font-weight: 800;
        color: var(--cor1);
        display: flex;
        align-items: flex-start;
        gap: 4px;
        line-height: 1;

        small {
            font-size: 1.37rem;
        }

        .per-bottle {
            font-size: 0.8rem;
            line-height: 1.2;
            text-align: left;
            font-weight: 600;
            color: #000;
            margin-top: 8px;
        }
    }

    .produto-header {
        background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .produto-img {
        height: 200px;
        object-fit: contain;
        margin: 12px 0;
    }

    .recommended-text {
        font-size: 0.95rem;
        color: #6b7280;
        margin: 4px 0 8px 0;
    }

    .savings-text {
        font-size: 0.9rem;
        color: #000;
        font-weight: 600;
        margin: 8px 0 4px 0;
        text-decoration: line-through;
        text-decoration-color: red;
        text-decoration-thickness: 2px;

        &.savings-highlight {
            color: var(--cor1);
            font-weight: 700;
            font-size: 1rem;
        }
    }

    .guarantee-text {
        font-size: 0.85rem;
        color: #000;
        margin: 4px 0;
        font-weight: 500;
    }

    .total-price {
        font-size: 1rem;
        color: #000;
        margin: 8px 0 4px 0;

        s {
            color: #6b7280;
            margin-right: 8px;
        }

        strong {
            font-size: 1.2rem;
            color: var(--cor1);
        }
    }

    .shipping-note {
        font-size: 0.85rem;
        color: #6b7280;
        margin: 0;
    }
}

.produto-card.destaque {
    background: radial-gradient(ellipse at top, #e6ffed 0%, #eafff2 50%, rgb(0 255 85 / 12%) 100%);
    border: 2px solid var(--cor2);
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(22, 249, 116, 0.25);

    &:hover {
        transform: scale(1.05) translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 255, 64, 0.3);
    }

    .btn {
        color: #fff;
        box-shadow: 0 4px 12px rgba(60, 249, 22, 0.3);
        
        &:hover {
            box-shadow: 0 6px 16px rgba(22, 249, 33, 0.4);
        }
    }

    .produto-header {
        background: linear-gradient(135deg, var(--cor2) 0%, #36bb34 100%);
    }
}

.bonus {
    padding: 6px 12px;
    font-size: 1.25em;
    width: 250px;
    background: var(--cor1);
    margin-top: 8px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;

    &.bonus1 {
        background: var(--cor1);
    }

    &.bonus2 {
        background: var(--cor4);
    }

    &.bonus3 {
        background: var(--cor5);
    }

    span {
        width: 24px;
        height: 24px;
        display: flex;
        /* aspect-ratio: 1; */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        color: #000;
    }
}

#certificado {
    max-width: 1000px;
    border: 5px solid var(--cor1);
    border-radius: 12px;
    background: rgb(25 129 4 / 5%);

    #pontilhado {
        border: 4px dashed var(--cor2);
        margin: 6px;
        border-radius: 8px;
        padding: 20px;

        h1 {
            font-size: 3em;
        }

        > div {
            margin-top: 12px;
            font-size: 1.1em;
        }

        span {
            width: 56px;
            height: 56px;
            aspect-ratio: 1;
            font-size: 2em;
            font-weight: 700;
            color: #fff;
            border-radius: 50%;
            background: var(--cor1);
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    img {
        width: 80%;
        max-width: 650px;
        margin: 0 auto;
    }
}

.garantia {
    background: white;
}

.garantia-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.garantia-selo {
    flex-shrink: 0;
}

.garantia-selo img {
    width: 280px;
    height: auto;
}

.garantia-conteudo {
    flex: 1;
    width: 100%;
    max-width: 800px;
}

.garantia-conteudo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.garantia-conteudo h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
    color: red;
}

.garantia-conteudo p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.garantia-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.garantia-badges img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 8px;
}

@media (max-width: 968px) {
    .garantia-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .garantia-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .garantia-selo img {
        width: 200px;
    }

    .garantia-badges img {
        width: 60px;
        height: 60px;
    }
}

#bonus {
    background: #126901;
}

.bonus-card {
    background: #fff;
    border-radius: 12px;
    border: 2px solid var(--cor1);
    padding: 12px;

    img {
        width: 100%;
        border-radius: 8px;
    }
}

.selos-qualidade {

    img {
        width: 100%;
    }
}

.estrelas {
    font-size: 3em;
    color: var(--cor4);
}

.titulo-invertido {
    padding: 12px;
    background: var(--cor1);
    color: #fff;
    border-radius: 12px;
    font-size: 3em;
}

.depoimento {
    margin-top: 40px;

    img {
        width: 56px;
        border-radius: 6px;
        border: 2px solid var(--cor1);
    }

    .depoimento-head {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;

        .estrelas {
            font-size: 1.67em;
        }

        .star5 {
            padding: 2px 6px;
            background: #8BC34A;
            border-radius: 5px;
            color: #fff;
        }

        .verified {
            color: #204099;
            font-size: 1.15em;
            font-weight: 600;
        }
    }

    .depoimento-body {
        p {
            font-size: 1.2em;
            font-style: italic;
        }

        .nome {
            color: #204099;
        }
    }
}

.costumer-nota {
    display: flex;
    flex-direction: row;
    align-items: center;

    .estrelas {
        font-size: 2.5em;
        line-height: 1rem;
        color: var(--cor4);
    }

    .check {
        width: 32px;
        aspect-ratio: 1;
        background: var(--cor1);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.5em;
    }

    p {
        font-size: 1.25em;
        font-weight: 700;
        color: var(--cor1);
    }
}

#faq {
    background: var(--cor1);
}


.pergunta {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
    border-radius: 6px 6px 0px 0px;
    cursor: pointer;
}

.pergunta img {
    width: 24px;
}

.resposta {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
    border-radius: 0px 0px 6px 6px;
    border-top: 1px solid #d9d8d8;
}

.resposta.ativo {
    display: flex;
}

.resposta p {
    margin: 0px;
}

.top-newsbar {
    background: #0f6f79;
    padding: 14px 0;
}

.top-newsbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-newsbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
}

.top-newsbar-logo-img {
    display: block;
    width: auto;
    height: 30px;
}

.top-newsbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex: 1;
    flex-wrap: wrap;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.nav-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-item-area {
    font-weight: 800;
}

.nav-chevron {
    opacity: 0.85;
}

.top-newsbar-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 32px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .top-newsbar {
        padding: 16px 0;
    }

    .top-newsbar-inner {
        gap: 16px;
    }

    .top-newsbar-nav {
        gap: 18px;
        font-size: 0.95rem;
    }

    .top-newsbar-logo-img {
        height: 26px;
    }
}

@media (max-width: 640px) {
    .top-newsbar-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .top-newsbar-nav {
        display: none;
    }

    .nav-item-area {
        display: none;
    }

    .top-newsbar-logo,
    .top-newsbar-search {
        width: auto;
    }

    .top-newsbar-search {
        justify-content: flex-end;
    }
}

.header-media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.header-media-logos img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
}

/*#author {
    position: absolute;
    top: 12px;
    left: 12px;
}*/

.quizz-container {
    background: var(--bg-95);
}

.quiz-container {
    max-width: 900px;
    margin: 0 auto;
}

.quiz-card {
    /*background: linear-gradient(135deg, var(--cor1), #0d5a00);
    border: 4px solid white;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);*/
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-header h2 {
    color: white;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 2rem;
}

.quiz-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.question {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.question.active {
    display: block;
}

.question h4 {
    color: white;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.options-container {
    max-width: 400px;
    margin: 0 auto 30px auto;
}

.option {
    border-radius: 15px;
    color: white;
    font-weight: 600;
    background-color: #0d5a00 !important;
    border: 2px solid var(--cor1) !important;
    width: 100%;
    margin-bottom: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.option:hover {
    border-color: white !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.option:active {
    transform: translateY(0);
}

.form-check-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
    text-align: left;
}

.form-check {
    background-color: #0d5a00;
    border: 2px solid var(--cor1);
    border-radius: 10px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.form-check:hover {
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.form-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

.form-check-label {
    color: white;
    cursor: pointer;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 15px;
    margin: 0;
    pointer-events: none;
}

.form-check:has(input[type="checkbox"]:checked) {
    background-color: #048d0a;
    border: 2px solid var(--cor2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.form-check:has(input[type="checkbox"]:checked) .form-check-label {
    color: #ffd700;
    font-weight: 700;
}

@media (max-width: 768px) {
    .form-check:has(input[type="checkbox"]:checked) {
        transform: scale(1.02);
    }
}

.navigation-buttons {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back {
    background-color: #ffffff !important;
    border: 2px solid rgba(37, 114, 36, 0.28) !important;
    color: var(--cor1) !important;
    padding: 16px 25px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    line-height: 1rem;
    font-size: 1.1em;
    min-width: 245px;
    box-shadow: 0 12px 24px rgba(37, 114, 36, 0.08);
}

.btn-back:hover {
    background-color: rgba(37, 114, 36, 0.06) !important;
    border-color: var(--cor1) !important;
    color: var(--cor1) !important;
}

.btn-calculate {
    background: linear-gradient(45deg, var(--cor2), #ffd700);
    border: none;
    color: #000;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1rem;
    transition: all 0.3s ease;
    margin-left: 15px;
    border: 2px solid var(--cor2);
    min-width: 245px;
}

.progress-section {
    display: none;
}

.progress-section.active {
    display: block;
}

.progress-bar-container {
    background-color: rgba(255, 255, 255, 0.3);
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px auto;
    max-width: 400px;
}

.progress-fill {
    background: linear-gradient(90deg, var(--cor2), #ffd700);
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-fill.animate {
    animation: progressAnimation 10s forwards ease-out;
}

.progress-steps {
    position: relative;
    height: 40px;
    margin-top: 20px;
}

.step-txt {
    position: absolute;
    width: 100%;
    color: white;
    opacity: 0;
    font-weight: 500;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.step-txt.active {
    opacity: 1;
}

.result-section {
    display: none;
    text-align: left;
}

.result-section.active {
    display: block;
}

.result-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.result-text h2 {
    color: var(--cor2);
    margin-bottom: 20px;
}

.result-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.unlock-btn {
    background: linear-gradient(45deg, var(--cor2), #ffd700);
    border: none;
    color: #000 !important;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.unlock-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #000 !important;
}

.highlight-text {
    color: var(--cor2);
    font-weight: 700;
}

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

.mt-3 {
    margin-top: 1rem;
}

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

@keyframes progressAnimation {
    0% { width: 0%; }
    25% { width: 30%; }
    50% { width: 60%; }
    75% { width: 85%; }
    100% { width: 100%; }
}

@media (max-width: 768px) {
    .quiz-card {
        padding: 0px;
        margin: 10px;
    }
    
    .form-check-container {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    
    .quiz-description {
        font-size: 1rem;
    }
    
    .result-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-calculate {
        margin-left: 0;
        margin-top: 15px;
    }

    .free-shipping-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        background: #fff;
    }

    .ship-icon {
        width: 60px;
        height: 60px;
    }

    .free-shipping-title {
        font-size: 1rem;
    }

    .free-shipping-subtitle {
        font-size: 0.85rem;
    }

    .quiz-benefits-list {
        align-items: start !important;
    }
}


#formula-personalizada {
    background: white;
}

.formula-card {
    background: rgb(94 255 62 / 12%);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 8px 32px rgb(0 0 0 / 18%);
    border: 2px solid #048d0a;
}

.formula-produto {
    flex-shrink: 0;
}

.formula-produto img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.formula-conteudo {
    flex: 1;
}

.formula-conteudo h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.formula-beneficios {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.beneficio-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check-verde {
    width: 24px;
    height: 24px;
    background: #4ade80;
    color: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.beneficio-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.beneficio-item p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.btn-amarelo {
    background: var(--cor2);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-amarelo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 218, 0, 0.4);
}

/* Faixa Roxa - Frete Grátis */
.faixa-roxa {
    background: white;
}

.frete-icone img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.frete-texto h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.frete-texto p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 968px) {
    .formula-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .formula-produto img {
        width: 150px;
    }

    .formula-conteudo h2 {
        font-size: 1.5rem;
    }

    .beneficio-item {
        text-align: left;
    }

    .faixa-roxa .sessao {
        flex-direction: column;
        text-align: center;
    }

    .frete-icone img {
        width: 80px;
    }

    .frete-texto h2 {
        font-size: 1.4rem;
    }
}

.secao-depoimentos {
    background: #eee;
    padding: 50px 0;
}


.origem-reviews {
    font-size: 0.9rem;
    color: #565959;
    font-weight: 600;
    margin-bottom: 24px;
}

.container-depoimentos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    width: 100%;
}

.card-depoimento {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.depoimento-header {
    margin-bottom: 12px;
}

.usuario-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cor1) 0%, #0d5a00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.usuario-detalhes {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.usuario-nome {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.usuario-local {
    font-size: 0.8rem;
    color: #565959;
    margin: 0;
}

.depoimento-conteudo {
    display: flex;
    flex-direction: column;
}

.rating-estrelas {
    color: var(--cor4);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.depoimento-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin: 6px 0;
    line-height: 1.3;
}

.depoimento-data {
    font-size: 0.8rem;
    color: #565959;
    margin: 3px 0;
}

.depoimento-compra {
    font-size: 0.85rem;
    color: #565959;
    margin: 3px 0 10px 0;
    font-weight: 500;
}

.verified-badge {
    color: var(--cor1);
    font-weight: 700;
}

.fotos-antes-depois {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.fotos-antes-depois img {
    width: calc(50% - 8px);
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.depoimento-conteudo img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    margin: 12px 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.depoimento-texto {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 10px 0 0 0;
    font-weight: 400;
}


@media (max-width: 768px) {
    .titulo-depoimentos {
        font-size: 1.4rem;
    }

    .subtitulo-depoimentos {
        font-size: 1rem;
    }

    .card-depoimento {
        padding: 16px;
    }

    .depoimento-conteudo img {
        max-width: 100%;
    }

    .fotos-antes-depois {
        flex-direction: column;
        gap: 12px;
    }

    .fotos-antes-depois img {
        width: 100%;
        max-width: 100%;
    }
}

#quem-e-doutora {
    background: white;
}

.card-doutora {
    background: white;
    border-radius: 20px;
    padding: 32px;
    max-width: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    border: 2px solid var(--cor1);
}

.foto-doutora {
    flex-shrink: 0;
}

.foto-doutora img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.conteudo-doutora {
    flex: 1;
}

.conteudo-doutora h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.conteudo-doutora p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .card-doutora {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        max-width: 100%;
        width: calc(90% - 48px);
    }

   .width-600 {
        max-width: 100%;
    }

    .foto-doutora img {
        width: 180px;
        height: 180px;
    }

    .conteudo-doutora h2 {
        font-size: 1.5rem;
    }

    .conteudo-doutora p {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }

    .width-500 {
        max-width: 100%;
    }

    .navigation-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .ship-icon {
        padding: 8px;
        background: var(--cor1);
        object-fit: contain;
        flex-shrink: 0;
        border-radius: 12px;
    }

    .free-shipping-titulo, .free-shipping-subtitulo {
        text-align: center;
    }
}

#referencias {
    background: white;
}

#referencias h2 {
    color: #000;
}

#referencias ol {
    list-style-position: inside;
    padding-left: 0;
    margin: 0;
}

#referencias ol li {
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #000;
}

#referencias ol li span {
    color: #6b7280;
    font-size: 0.9rem;
}

/*#fb-comments {
	font-family: "Segoe UI Historic", "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 13px;
	width: 100%;
	margin: auto;
}*/

#fb-comments .fb-heading {
	margin: 2.125em 0 0.625em;
	font-size: 1.1em;
	color: #555;
	font-weight: 400;
	text-align: left;
}

#fb-comments .comments-container {
	display: flex;
	flex-direction: column;
	gap: 1.25em;
	border: 0.0625em solid #e9ebee;
	border-radius: 1.25em;
	padding: 1.25em 1.25em 0;
}

#fb-comments .comment {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
	width: 100%;
	max-width: 100%;
	gap: 0.625em;
}

#fb-comments .comment.answer {
	margin-left: 3.625em;
	max-width: calc(100% - 3.625em);
	margin-bottom: 0.75em;
}

#fb-comments .comment.answer+.answer {
	margin-top: -0.75em;
}

#fb-comments .comment .user-avatar {
	max-width: 3em;
	max-height: 3em;
	border-radius: 1.5625em;
	-o-object-fit: cover;
	object-fit: cover;
}

#fb-comments .comment .comment-data {
	width: 100%;
}

#fb-comments .comment .comment-data .user {
	font-weight: 400;
	color: #050505;
	border-radius: 0.75em;
	background-color: #f0f2f5;
	padding: 0.375em 0.75em 0.75em;
}

#fb-comments .comment .comment-data .user .name {
	margin: 0;
	color: #365899;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content;
}

#fb-comments .comment .comment-data .user .text {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	color: #050505;
	width: fit-content;
    text-align: left;
}

#fb-comments .comment .comment-data .buttons {
	margin: 0.125em 0 0 0.75em;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.3125em;
}

#fb-comments .comment .comment-data .buttons time,
#fb-comments .comment .comment-data .buttons .like,
#fb-comments .comment .comment-data .buttons .answer,
#fb-comments .comment .comment-data .buttons span {
	font-size: 0.80em;
	color: #888;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#fb-comments .comment .comment-data .buttons .like,
#fb-comments .comment .comment-data .buttons .answer {
	font-weight: 600;
	cursor: pointer;
}

#fb-comments .comment .comment-data .buttons .like[liked] {
	color: #365899;
}

#fb-comments .comment .comment-data .buttons .answer {
	cursor: default;
	position: relative;
}

#fb-comments .comment .comment-data .buttons .answer:hover::after {
	content: "You cannot comment on this post";
	position: absolute;
	left: 50%;
	top: -0.625em;
	width: 11.25em;
	background-color: #f0f2f5;
	color: #4c4c4c;
	transform: translate(-50%, -100%);
	z-index: 10;
	border-radius: 0.25em;
	padding: 0.375em;
	text-align: center;
	font-weight: 400;
	box-shadow: 0.125em 0.125em 0.5em 0.125em rgba(0, 0, 0, 0.1803921569);
}

#fb-comments .comment .comment-data .buttons .answer:hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -0.625em;
	width: 0;
	height: 0;
	border-left: 0.5em solid rgba(0, 0, 0, 0);
	border-right: 0.5em solid rgba(0, 0, 0, 0);
	border-top: 0.5em solid #f0f2f5;
	z-index: 11;
	transform: translateX(-50%);
	filter: drop-shadow(0 0.1875em 0.125em rgba(0, 0, 0, 0.1));
}

#fb-comments .comment .likes {
	position: absolute;
	bottom: -0.625em;
	right: 0;
	background-color: #fff;
	border: 0.125em solid #eaebef;
	display: flex;
	align-items: center;
	font-size: 0.875em;
	line-height: 1;
	color: #888;
	border-radius: 6.25em;
	padding: 0.0625em 0.25em 0.0625em 0;
}

#fb-comments .comment .likes::before {
	content: url('../images/like.webp');
	cursor: pointer;
}

#fb-comments .comments-closed {
	font-size: 0.875em;
	font-weight: 600;
	text-align: center;
	margin: 0.9375em 0 5px;
	color: #555;
}

@media (min-width: 576px) {
	#fb-comments {
		font-size: 16px;
	}

	#fb-comments .comment .likes {
		bottom: 0;
	}
}

.likes img {
    width: 20px;
    margin-inline: 5px;
}

#rodape {
    background: #1b1b1b;
    color: #e2e8f0;
}

#rodape span {
    color: #cbd5e0;
}

#rodape a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

#rodape a:hover {
    color: #fff;
}

#rodape p {
    color: #cbd5e0;
}

#quizz-container {
    background: radial-gradient(circle at top left, rgba(255, 222, 0, 0.16), transparent 24%), linear-gradient(145deg, #257224 0%, #155716 52%, #103d10 100%);
}

.quiz-shell {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    padding: 24px;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(16, 61, 16, 0.18);
}

.quiz-progress {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.quiz-progress-label {
    color: var(--cor1);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quiz-progress-track {
    width: 100%;
    height: 12px;
    background: rgba(37, 114, 36, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.quiz-progress-fill {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cor1) 0%, var(--cor1) 60%, var(--cor2) 100%);
    transition: width 0.35s ease;
}

.quiz-panel {
    display: none;
    animation: fadeIn 0.35s ease;
    color: var(--texto-95);
}

.quiz-panel.active {
    display: block;
}

.quiz-eyebrow,
.quiz-step-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 14px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: var(--cor1);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quiz-question-title {
    color: var(--texto-95);
    margin-bottom: 10px;
    text-shadow: none;
}

.quiz-question-subtitle {
    color: var(--texto-70);
    font-size: 1.08rem;
    margin-bottom: 26px;
}

.quiz-description-tight {
    margin-bottom: 26px;
}

.quiz-options-grid,
.quiz-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 auto;
}

.quiz-choice,
.quiz-check-card {
    position: relative;
    width: 100%;
    border: 2px solid rgba(37, 114, 36, 0.1);
    border-radius: 18px;
    background: #f8f9ff;
    color: var(--texto-95);
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.quiz-choice {
    padding: 20px 22px;
    cursor: pointer;
}

.quiz-choice:hover,
.quiz-check-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 114, 36, 0.4);
    background: rgba(37, 114, 36, 0.04);
    box-shadow: 0 16px 32px rgba(37, 114, 36, 0.14);
}

.quiz-choice.is-selected,
.quiz-check-card.is-selected {
    border-color: var(--cor1);
    background: rgba(4, 185, 65, 0.08);
    box-shadow: 0 18px 34px rgba(37, 114, 36, 0.16);
}

.quiz-choice-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
}

.quiz-choice-note {
    display: block;
    margin-top: 6px;
    font-size: 0.95rem;
    color: var(--texto-70);
    font-weight: 500;
}

.quiz-check-card {
    display: flex;
    align-items: stretch;
    cursor: pointer;
    overflow: hidden;
}

.quiz-check-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quiz-check-copy {
    display: block;
    width: 100%;
    padding: 20px 22px;
}

.quiz-check-card::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(37, 114, 36, 0.3);
    background: transparent;
    transition: all 0.2s ease;
}

.quiz-check-card.is-selected::after {
    border-color: var(--cor1);
    background: var(--cor1);
    box-shadow: inset 0 0 0 4px #ffffff;
}

.quiz-primary-btn,
.quiz-primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(0deg, #099b50 45% 0%, #00bf63 55%);
    color: #fff;
    font-size: 1.25rem;
    width: stretch;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 1px;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    border: 2px solid rgb(29 122 28 / 50%);
}

.quiz-primary-btn:hover,
.quiz-primary-link:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.28);
}

.quiz-primary-btn:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
    box-shadow: none;
}

.quiz-secondary-btn {
    min-width: 160px;
}

.navigation-buttons-split {
    gap: 14px;
}

.quiz-loading-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 auto 28px;
    text-align: left;
}

.quiz-loading-item {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--cor1);
    color: #fff;
    font-weight: 700;
}

.quiz-timer-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    margin-bottom: 18px;
}

.quiz-timer-label {
    color: var(--texto-70);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.quiz-timer {
    color: var(--cor1);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1;
}

.quiz-loader-track {
    width: min(100%, 520px);
    height: 14px;
    margin: 0 auto;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(37, 114, 36, 0.12);
}

.quiz-loader-bar {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cor1) 0%, #8BC34A 100%);
    transition: width 1s linear;
}

.quiz-result-copy {
    margin: 0 auto 24px;
    max-width: 640px;
}

.quiz-result-heading {
    color: var(--texto-95);
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.quiz-benefits-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.quiz-benefits-list li {
    position: relative;
    padding-left: 26px;
    color: var(--cor1);
    line-height: 1.5;
    font-weight: 600;
}

.quiz-benefits-list li::before {
    width: 20px;
    height: 20px;
    background: var(--cor1);
    display: flex;
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: 900;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75em;
}

.quiz-offer-card {
    max-width: 680px;
    margin: 0 auto 28px;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #E91E63 0%, rgb(255 18 145) 100%);
    border: 1px solid rgba(114, 36, 88, 0.18);
}

.quiz-offer-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.quiz-offer-subtitle {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.quiz-offer-text {
    color: #ffffffd8;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .quiz-options-grid,
    .quiz-checkbox-grid,
    .quiz-loading-points {
        grid-template-columns: 1fr;
    }

    .navigation-buttons-split {
        flex-direction: column;
    }

    .quiz-offer-title {
        font-size: 1.3rem;
    }
}
