﻿/* ===========================================
   PANTALLA / LEGAL TEXT PAGES
   Términos y Condiciones, Aviso de Privacidad, etc.
   Wrapper (.index_texto) is injected by pantalla.js —
   the platform's native .index_texto block is hidden,
   so we wrap the real visible h2/div content ourselves.
   =========================================== */

.index_texto {
    max-width: 860px;
    margin: 0 auto !important;
    padding: 156px 24px 100px !important;
    box-sizing: border-box;
    width: 100%;
}

    /* Override inline font-size:14px / font-family:Arial spans from the CMS */
    .index_texto,
    .index_texto * {
        font-family: 'Poppins', sans-serif !important;
        line-height: 1.75 !important;
    }

/* ── Page title — injected from <title> by pantalla.js ── */
.index_texto_title {
    text-align: center;
    margin-bottom: 8px;
}

    .index_texto_title h1 {
        font-family: 'Luckiest Guy', cursive !important;
        font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
        font-weight: 400 !important;
        color: #111111 !important;
        margin: 0 0 4px 0 !important;
        line-height: 1.2 !important;
    }

    .index_texto_title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: #22C55E;
        border-radius: 2px;
        margin: 16px auto 32px;
    }

/* ── Section headers — <h2><strong>Sección N — ...</strong></h2> ── */
.index_texto h2 {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 36px 0 12px 0 !important;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(34,197,94,0.20);
}

    .index_texto h2:first-of-type {
        margin-top: 0 !important;
    }

/* ── Body paragraphs — plain <div> blocks ── */
.index_texto > div {
    font-size: 0.95rem !important;
    color: #444444 !important;
    margin-bottom: 18px !important;
}

.index_texto b,
.index_texto strong {
    color: #111111 !important;
}

/* ── Links — WhatsApp, email, etc. ── */
.index_texto a {
    color: #16A34A !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(34,197,94,0.40) !important;
    transition: color 0.15s ease;
}

    .index_texto a:hover {
        color: #22C55E !important;
    }

@media (max-width: 768px) {
    .index_texto {
        padding: 140px 20px 70px !important;
    }

    .index_texto_title h1 {
        font-size: 1.6rem !important;
    }

    .index_texto h2 {
        font-size: 0.95rem !important;
    }
}
