/* ==========================================================
   PORTADAS DE PÁGINAS INTERIORES
   Nosotros, Reproductores, Yeguas, Proyecta tu cruza,
   Galería y Contacto
========================================================== */

/*
La altura, la fotografía, el degradado, el brillo y la sombra
de todas las portadas se controlan únicamente desde:

static/css/base/generales.css

Este archivo controla solamente la distribución y los textos
de las portadas interiores.
*/


/* ==========================================================
   CONTENIDO DE LA PORTADA
========================================================== */

.portada-interior .portada-interior-contenido {
    position: relative;
    z-index: 1;

    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}


/* Limita el ancho del contenido textual. */

.portada-interior .portada-interior-contenido > * {
    max-width: 700px;
}


/* ==========================================================
   TÍTULO PRINCIPAL
========================================================== */

.portada-interior h1 {
    max-width: 700px;
    margin-top: 0;
    margin-bottom: 1.4rem;

    color: var(--blanco);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 700;
    line-height: 0.98;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}


/* ==========================================================
   DESCRIPCIÓN
========================================================== */

.portada-interior p {
    max-width: 680px;
    margin-top: 0;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.8;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}


/* ==========================================================
   SUBTÍTULO OPCIONAL
========================================================== */

.portada-interior .subtitulo-portada {
    margin-bottom: 1rem;

    color: #d6a47b;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    line-height: 1.4;
    text-transform: uppercase;
}


/* ==========================================================
   PROTECCIÓN CONTRA ESTILOS PARTICULARES
========================================================== */

/*
Estas clases conservan únicamente un encuadre uniforme.
No se define aquí background-image, degradado ni altura.
*/

.portada-interior.contacto-hero,
.portada-interior.nosotros-hero,
.portada-interior.reproductores-hero,
.portada-interior.yeguas-hero,
.portada-interior.proyecta-hero,
.portada-interior.proyecta-cruza-hero,
.portada-interior.proyecto-cruza-hero,
.portada-interior.galeria-hero {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/* ==========================================================
   TABLETS
========================================================== */

@media (max-width: 991.98px) {
    .portada-interior .portada-interior-contenido {
        text-align: center;
    }

    .portada-interior .portada-interior-contenido > * {
        margin-right: auto;
        margin-left: auto;
    }

    .portada-interior h1 {
        max-width: 760px;
    }

    .portada-interior p {
        max-width: 680px;
    }
}


/* ==========================================================
   CELULARES
========================================================== */

@media (max-width: 575.98px) {
    .portada-interior .portada-interior-contenido {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .portada-interior h1 {
        margin-bottom: 1rem;
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        line-height: 1;
    }

    .portada-interior p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .portada-interior .subtitulo-portada {
        font-size: 0.72rem;
        letter-spacing: 0.14rem;
    }
}