/* TIPOGRAFÍA GLOBAL */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #111;
}

/* CONTENEDOR GLOBAL PB */
.pb-contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* TÍTULOS GENERALES */
.pb-titulo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pb-subtitulo {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin-bottom: 30px;
}

/* ENCABEZADO */

.pb-encabezado {
    width: 100%;
    padding: 40px 20px;
}

.pb-encabezado-inner {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.pb-encabezado-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.pb-encabezado-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
/* ===========================================================
   BLOQUE: COLUMNA DOBLE
=========================================================== */
.pb-damero {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
}

.pb-damero-fila {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

/* Invertir columnas en segunda fila */
.pb-damero-fila.invertida {
    grid-template-columns: 1fr 1fr;
}

.pb-damero-texto h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pb-damero-texto p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.pb-damero-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .pb-damero-fila {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pb-damero-fila.invertida {
        grid-template-columns: 1fr;
    }
}
