.div-ancho-completo {
    padding: 0 2rem 0 2rem!important;
}
/* ===== CABECERA ===== */
.div-cab-pagina {
    background: linear-gradient(135deg, var(--color-bg-dark), #1c1c1c);
    color: var(--color-white);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
}

.div-cab-pagina h1 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
    color: var(--color-white);
}

/* ===== BLOQUES GENERALES ===== */
.div-equilibra,
.div-funciona,
.div-beneficios,
.div-complementaria,
.div-quien,
.div-mas-terapia,
.div-sesion,
.div-importante,
.div-origen,
.div-conecta {
    background-color: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* efecto hover suave */
.div-equilibra:hover,
.div-funciona:hover,
.div-beneficios:hover,
.div-complementaria:hover,
.div-quien:hover,
.div-mas-terapia:hover,
.div-sesion:hover,
.div-importante:hover,
.div-origen:hover,
.div-conecta:hover {
    transform: translateY(-5px);
}

/* ===== TITULOS ===== */
.wp-block-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-bg-dark);
}

/* ===== PÁRRAFOS ===== */
.entry-content p {
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-align: justify;
}

/* ===== LISTAS ===== */
.wp-block-list {
    list-style: none;
    padding-left: 0;
}

.wp-block-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.6rem;
}

/* icono tipo check moderno */
.wp-block-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-magenta02);
}

/* ===== COLUMNAS ===== */
.wp-block-columns {
    gap: 1.5rem;
}

/* ===== IMÁGENES ===== */
.wp-block-image img {
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.wp-block-image img:hover {
    transform: scale(1.05);
}

/* ===== SECCIÓN BENEFICIOS (DESTACAR) ===== */
.div-beneficios {
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    border-left: 6px solid var(--color-magenta02);
}

/* ===== SECCIÓN SESIÓN ===== */
.div-sesion {
    background: linear-gradient(135deg, #fdfdfd, #f3f3f3);
}

/* ===== SECCIÓN IMPORTANTE ===== */
.div-importante {
    background-color: #fff8e1;
    border-left: 6px solid #ffc107;
}

/* ===== ORIGEN ===== */
.div-origen .wp-block-image {
    text-align: center;
}
.div-origen img {
    margin-top: 1rem;
    max-width: 220px;
}

/* ===== CTA FINAL ===== */
.div-conecta {
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg-dark), #2a2a2a);
    color: var(--color-white);
}

.div-conecta h2,
.div-conecta h3,
.div-conecta p {
    color: var(--color-white);
    text-align: center;
}
.div-conecta p {
    margin: 0;
    padding:0;
}
.div-conecta a {
    color: var(--color-white);
}


/* BOTÓN */
.wp-block-button__link {
    background: linear-gradient(135deg, var(--color-magenta02), #ff4da6);
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .div-cab-pagina h1 {
        font-size: 1.8rem;
    }

    .wp-block-heading {
        font-size: 1.5rem;
    }

    .entry-content {
        padding: 1rem;
    }

}