/* =========================================================================
   Fleischmann — Texturas de marca (PRUEBA DE CONCEPTO)
   Aplicadas SOLO en las dos secciones de bloque de color, muy sutiles,
   para reforzar la identidad sin saturar. Las secciones claras (Soluciones,
   Recetarios, Historia) se mantienen limpias y airosas.

   Reversible: quitar el <link> de este archivo en el layout devuelve los
   fondos originales.
   ========================================================================= */

/* --- Productos: patrón de panadería sobre el azul (reemplaza la "F" plana) */
.products-section {
    background:
        linear-gradient(rgba(1, 33, 105, 0.90), rgba(1, 33, 105, 0.90)),
        url("../img/textures/products-pattern.jpg") top left / 260px repeat,
        var(--blue);
}

.products-section::before {
    display: none;
}

/* --- Comercial / CTA: ahora comparte el fondo azul con patrón de la
   sección de productos (a pedido del cliente); textura de líneas fuera. */
.commercial-section::after {
    content: none;
}

/* --- Página Nosotros: nueva imagen del hero (masa madre artesanal) ------- */
.about-heritage-hero {
    background:
        linear-gradient(90deg, rgba(1, 33, 105, 0.86), rgba(1, 33, 105, 0.22)),
        url("../img/web/about-heritage-hero.jpg") center / cover;
}

/* --- Página Nosotros: textura sutil en la sección "Nuestra historia" ----- */
.about-heritage-intro {
    position: relative;
}

.about-heritage-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/textures/bakery-crumbs.svg") repeat;
    background-size: 340px auto;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.about-heritage-intro > * {
    position: relative;
    z-index: 1;
}
