/* =======================================
   TÉRMINOS Y CONDICIONES
   (DEPURADO – USA BASE.CSS)
======================================= */

/* CONTENEDOR GENERAL */
.terminos-condiciones {
    display: flex;
    justify-content: center;
    margin-top: 60px; /* baja el contenido bajo la barra */
    padding: 20px;
}

/* CUADRO BLANCO */
.terminos-contenedor {
    position: relative;
    background: white;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* MARCA DE AGUA (DESKTOP) */
.terminos-contenedor::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("imagenes/taipi.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45%;
    opacity: 0.12;
    z-index: 0;
}

/* TEXTO SOBRE LA MARCA DE AGUA */
.terminos-contenedor * {
    position: relative;
    z-index: 1;
}

/* TÍTULO PRINCIPAL */
.terminos-contenedor h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

/* SUBTÍTULOS */
.terminos-contenedor h2 {
    margin-top: 25px;
    font-size: 22px;
    color: #222;
}

/* TEXTO */
.terminos-contenedor p,
.terminos-contenedor ul {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
    .terminos-contenedor::before {
        background-size: 60%;
        opacity: 0.18;
    }
}

@media (max-width: 768px) {
    .terminos-condiciones {
        margin-top: 40px;
        padding: 15px;
    }

    .terminos-contenedor {
        padding: 25px;
    }

    .terminos-contenedor::before {
        background-size: 120%;
        opacity: 0.2;
    }
}
