/* ============================================================
   Template Oficial MAXXIMA — CSS
   ============================================================ */

/* ===== VARIÁVEIS ===== */
:root {
    --red:        #AD1F1F;
    --dark-red:   #990A0A;
    --dark:       #303030;
    --light-gray: #d6d4d4;
    --white:      #FFFFFF;
    --text-gray:  #707070;
    --green:      #049A6A;
    --black:      #000000;
    --font:       'Poppins', sans-serif;
    --font-cta:   'Raleway', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }

b, strong { font-weight: 600; }

ul { list-style: none; }

a { text-decoration: none; }

/* ===== RÓTULOS DE BLOCO ===== */
.block-label {
    background-color: var(--red);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-label h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: var(--white);
    text-align: center;
    max-width: 70%;
}

/* ===== SEÇÕES ===== */
.sec {
    padding: 50px 0;
    width: 100%;
}

.py-30 { padding-top: 30px !important; padding-bottom: 30px !important; }

.bg-white      { background-color: var(--white); }
.bg-light-gray { background-color: var(--light-gray); }
.bg-dark       { background-color: var(--dark); }
.bg-white-radial {
    background: radial-gradient(circle at center, #C4DED6 0%, #ffffff 70%);
}

/* ===== CONTAINER COLUNA CENTRALIZADA ===== */
.col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.gap-8  { gap: 8px  !important; }
.gap-24 { gap: 24px !important; }
.gap-30 { gap: 30px !important; }

/* ===== UTILITÁRIOS DE LARGURA ===== */
.w-29  { max-width: 29%;  width: 29%;  margin-left: auto; margin-right: auto; }
.w-40  { max-width: 40%;  width: 40%;  margin-left: auto; margin-right: auto; }
.w-42  { max-width: 42%;  width: 42%;  margin-left: auto; margin-right: auto; }
.w-46  { max-width: 46%;  width: 46%;  margin-left: auto; margin-right: auto; }
.w-48  { max-width: 48%;  width: 48%;  margin-left: auto; margin-right: auto; }
.w-50  { max-width: 50%;  width: 50%;  margin-left: auto; margin-right: auto; }
.w-52  { max-width: 52%;  width: 52%;  margin-left: auto; margin-right: auto; }
.w-54  { max-width: 35%;  width: 35%;  margin-left: auto; margin-right: auto; mix-blend-mode: multiply; }
.w-56  { max-width: 35%;  width: 35%;  margin-left: auto; margin-right: auto; }
.w-58  { max-width: 58%;  width: 58%;  margin-left: auto; margin-right: auto; }
.w-60  { max-width: 60%;  width: 60%;  margin-left: auto; margin-right: auto; }
.w-62  { max-width: 62%;  width: 62%;  margin-left: auto; margin-right: auto; }
.w-70  { max-width: 70%;  width: 70%;  margin-left: auto; margin-right: auto; }
.w-80  { max-width: 60%;  width: 60%;  margin-left: auto; margin-right: auto; }
.w-84  { max-width: 84%;  width: 84%;  margin-left: auto; margin-right: auto; }
.w-86  { max-width: 86%;  width: 86%;  margin-left: auto; margin-right: auto; }

/* ===== TIPOGRAFIA ===== */
.headline {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    color: var(--text-gray);
    text-align: center;
}

.headline-bold {
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    color: var(--text-gray);
    text-align: center;
}

.subheadline {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
}

.body-text {
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    color: var(--text-gray);
}

.white      { color: var(--white) !important; }
.text-center { text-align: center; }

/* ===== LOGO ÍCONE ===== */
.logo-icon { width: 16%; }

/* ===== GRID DE DEPOIMENTOS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== CARD VERMELHO — RUMINAÇÃO ===== */
.card-red {
    background-color: var(--dark-red);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.card-img-col { width: 30%; align-items: center;display: flex; justify-content: center;}

.card-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
}

.card-body {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

/* ===== CARDS DE PASSOS ===== */
.step-card {
    background-color: var(--light-gray);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.step-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.step-label {
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-gray);
}

.step-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-gray);
}

.step-desc {
    font-size: 16px;
    color: var(--black);
    line-height: 1.5;
}

.step-img { flex: 1; }

/* ===== GRID DE BENEFÍCIOS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    padding: 0 60px;
}

.benefit-card {
    background-color: var(--light-gray);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.benefit-icon-placeholder {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background-color: #c0c0c0;
    border-radius: 8px;
}

.benefit-text h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.benefit-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: var(--black);
}

/* ===== CARDS DE ENTREGÁVEIS / BÔNUS ===== */
.deliverable-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.deliverable-card.reverse { flex-direction: row-reverse; }

.deliv-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.deliv-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-gray);
}

.deliv-text p {
    font-size: 16px;
    color: var(--black);
    line-height: 1.6;
}

.deliv-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.deliv-img img { max-width: 80%; }

/* ===== CARD "PARA QUEM SERVE" ===== */
.for-who-card {
    background-color: var(--light-gray);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-col {
    flex: 1;
    display: flex;
    align-items: center;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist li {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
}

.for-who-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.for-who-img img { max-width: 80%; }

/* ===== RECAPITULANDO ===== */
.recap-card {
    background-color: var(--light-gray);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.recap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px dotted var(--black);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
}

.recap-row.last { border-bottom: none; }

.recap-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gray);
}

/* ===== BLOCO DE PREÇO ===== */
.pricing-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px 50px;
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-left: auto;
    margin-right: auto;
}

.pricing-left {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-right: 16px;
}

.pricing-left img { max-width: 100%; }

.pricing-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-img { width: 50%; }

.divider-dashed {
    width: 60%;
    border: none;
    border-top: 2px dashed #ccc;
    margin: 4px 0;
}

.by-only {
    font-size: 20px;
    font-weight: 400;
    color: #66353A;
    text-align: center;
}

.price-display { display: flex; justify-content: center; }

.price-installment {
    font-family: var(--font);
    font-size: 50px;
    font-weight: 700;
    color: var(--green);
    text-align: center;
}

.price-cash {
    font-size: 20px;
    font-weight: 400;
    color: #66353A;
    text-align: center;
}

.btn-cta {
    display: block;
    background: linear-gradient(223deg, #00C356, #049A6A);
    color: var(--white);
    font-family: var(--font-cta);
    font-size: 18px;
    font-weight: 900;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    transition: filter 0.2s;
    cursor: pointer;
}

.btn-cta:hover { filter: brightness(1.1); }

.payment-img { width: 60%; }

/* ===== COMO ACESSAR ===== */
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-left: auto;
    margin-right: auto;
}

.access-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: flex-start;
}

.access-text { flex: 1; }

.access-icon {
    font-size: 36px;
    color: var(--dark);
    flex-shrink: 0;
    margin-top: 4px;
}

.access-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.access-card p {
    font-size: 18px;
    line-height: 22px;
    color: var(--black);
}

/* ===== AUTORIDADE ===== */
.author-wrapper {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 20px;
}

.author-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.author-text h2 {
    font-size: 26px;
    font-weight: 400;
    color: var(--text-gray);
}

.author-text h3 {
    font-size: 26px;
    font-weight: 400;
    color: var(--text-gray);
}

.author-text p {
    font-size: 18px;
    color: var(--black);
    line-height: 22px;
}

.author-img { flex: 1; }

/* ===== CONVERSA SÉRIA — OPÇÕES ===== */
.options-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.option-card {
    flex: 1;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-bad  { background-color: #FFF1F4; }
.option-good { background-color: #F3FFFB; }

.option-icon       { font-size: 80px; }
.option-icon.bad   { color: #e4343b; }
.option-icon.good  { color: var(--green); }

.option-title      { font-size: 24px; font-weight: 600; line-height: 36px; }
.option-title.bad  { color: #e4343b; }
.option-title.good { color: var(--green); }

.option-card p { font-size: 18px; line-height: 22px; color: var(--black); }

/* ===== ACCORDION FAQ ===== */
.accordion {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: var(--white);
    border: none;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.accordion-btn:hover { background: #f5f5f5; }

.accordion-btn::after {
    content: '+';
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 16px;
}

.accordion-btn.active::after { content: '−'; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 24px;
}

.accordion-content.open {
    max-height: 600px;
    padding: 4px 24px 24px;
}

.accordion-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--black);
}

/* ===== RODAPÉ ===== */
.footer {
    background-color: var(--dark);
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-main {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--white);
    text-align: center;
}

.footer-disclaimer {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--white);
    text-align: center;
    max-width: 80%;
}

/* ============================================================
   RESPONSIVO — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    .block-label h2 { font-size: 18px; max-width: 74%; line-height: 1.3; }

    .sec { padding: 30px 30px; }

    .headline,
    .headline-bold { font-size: 24px; line-height: 1.4; }

    .body-text { font-size: 22px; line-height: 1.4; }

    .logo-icon { width: 40%; }

    /* Zerando widths — tudo vira 100% no mobile */
    .w-29, .w-40, .w-42, .w-46, .w-48, .w-50, .w-52,
    .w-54, .w-56, .w-58, .w-60, .w-62, .w-70, .w-80,
    .w-84, .w-86 { max-width: 100%; width: 100%; }

    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

    .card-red { flex-direction: column; }
    .card-img-col { width: 100%; }

    .step-card { flex-direction: column; }

    .benefits-grid { grid-template-columns: 1fr; padding: 0; }

    .deliverable-card,
    .deliverable-card.reverse { flex-direction: column; }
    .deliv-img img { max-width: 70%; margin: 0 auto; }

    .for-who-card { flex-direction: column; }

    .recap-card { padding: 24px; }
    .recap-row { font-size: 14px; }
    .recap-price { font-size: 18px; }

    .pricing-wrapper {
        flex-direction: column;
        padding: 32px;
    }
    .pricing-left, .pricing-right { width: 100%; }
    .pricing-left { padding-right: 0; margin-bottom: 16px; }
    .price-installment { font-size: 40px; }

    .access-grid { grid-template-columns: 1fr; }
    .access-card { flex-direction: column-reverse; }

    .author-wrapper { flex-direction: column; max-width: 100%; padding: 0; }

    .options-row { flex-direction: column; }

    .footer { padding: 20px 30px; }
    .footer-disclaimer { max-width: 100%; }
}

/* Tablet (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid { padding: 0 20px; }

    .w-40, .w-42, .w-46, .w-48 { max-width: 70%; width: 70%; }
    .w-50, .w-52, .w-54, .w-56 { max-width: 80%; width: 80%; }

    .access-grid { grid-template-columns: repeat(2, 1fr); }
    .access-card:last-child { grid-column: 1 / -1; }
}

.icon{
mix-blend-mode: multiply; 

}