/* ─────────────────────────────────────────
       MÓDULO 1 — Encabezado
    ───────────────────────────────────────── */
.img-rounded {
    border-radius: 15%;

}

.img-rounded:hover {
    transform: scale(1.02);
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* ─────────────────────────────────────────
       MÓDULO 2 — tarjetas_proceso
    ───────────────────────────────────────── */
.beneficios-tens {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.beneficios-tens .card {
    border: none;
    background-color: transparent;
    margin-bottom: 10px;

}

.beneficios-tens .card-body {
    padding: 20px;
    background-color: #090813;
    border-radius: 10px;
    color: #fff;

}

.beneficios-tens .card-title {
    font-size: 20px;
    font-weight: bold;
}

.beneficios-tens .card-text {
    font-size: 16px;
}

/* ─────────────────────────────────────────
       MÓDULO 4 — ¿Por qué elegir Tensamax?
    ───────────────────────────────────────── */
.benefit-card {
    background: #fff;
    border: 0.1px solid #44444e;
    border-radius: 14px;
    padding: 10px 10px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0px 0px 11px rgba(42, 34, 32, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    margin-bottom: 20px;
    font-family: "CenturyGothic", sans-serif;
}

.benefit-card:hover {
    box-shadow: 0 6px 28px rgba(42, 34, 32, 0.08);
    transform: translateY(-3px);
}

.benefit-num {

    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    min-width: 26px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;

}

.benefit-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.55;
    margin: 0;

}

/* ─────────────────────────────────────────
        MÓDULO 5  — tensamax en cali
    ───────────────────────────────────────── */



.tens-cali {
    background: #25232b;
    padding: 30px 0px;
    text-align: left;
    width: 100%;
    margin: 20px 0px;
}

#tens-cali h2 {
    color: #fff;
}

#tens-cali p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────
        MÓDULO 6 — cta
    ───────────────────────────────────────── */
.cta-tens {
    justify-self: center;
    background: #fff;
    box-shadow: 0 0 15px 0 #000;
    color: rgba(30, 30, 30, 1.00);
    margin: 2rem 0rem 7rem 0rem;

}

.cta-tens .cta-btn {

    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 1px;
    transition: 0.2s;
    margin: 20px 5px;
    border: 2px solid #1B1B1B;
    color: #ffffff;
    background: #000;
}

.cta-tens .cta-btn:hover {
    color: #000;
    background: #fff;
    transform: scale(102%);

}




/* ─────────────────────────────────────────
        MÓDULO 7 — FAQ
    ───────────────────────────────────────── */

#faq {
    background: #fff;
    padding: 72px 0;
    text-align: left;
}

.faq-wrap {
    border-top: 1px solid #000;
    font-family: "CenturyGothic", sans-serif;

}

.faq-wrap:last-child {
    border-bottom: 1px solid #4d4d4d
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-trigger:focus {
    outline: none
}

.faq-qtxt {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;

}

.faq-pill {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.faq-pill svg {
    width: 11px;
    height: 11px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: transform .25s;
}

.faq-trigger.open .faq-pill svg {
    transform: rotate(45deg)
}

.faq-trigger.open .faq-pill {
    background: #bebebe;
}

.faq-body {

    font-size: 15px;
    color: #000;
    line-height: 1.75;
    padding-bottom: 18px;
    display: none;
}

.faq-body.show {
    display: block
}

@media(max-width:767px) {
    .h2 {
        font-size: 26px
    }

    .cta-h {
        font-size: 28px
    }

    .cta-box {
        padding: 36px 20px
    }

    #beneficios,
    #cta,
    #casos,
    #faq {
        padding: 52px 0
    }

    .container {
        padding: 0 16px
    }
}