/* =====================================================
   FLORS I PASSIÓ — MAIN PAGE
   MISMA IDENTIDAD VISUAL QUE "SOBRE NOSOTROS"
==================================================== */

:root {
    --marfil: #FAF8F4;
    --rosa-claro: #E8D3D0;
    --rosa: #B98282;
    --borgona: #6E4148;
    --borgona-oscuro: #5D383F;
    --negro: #24201F;
    --gris: #756B68;
    --champagne: #C7A77B;
    --blanco: #FFFFFF;
    --linea: rgba(110, 65, 72, .15);
    --sombra: 0 14px 35px rgba(110, 65, 72, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Lora", serif;
    color: var(--negro);
    background: #FAF8F4;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}


/* =====================================================
   NAVBAR
===================================================== */

nav {
    position: sticky;
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--marfil);
    border-bottom: 1px solid var(--linea);
    z-index: 3000;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 160px;
    height: 100px;
    object-fit: contain;
}

.menu {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3500;
}

.menu button {
    display: none;
    padding: 0;
    color: var(--borgona);
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.menu button:focus,
.menu button:focus-visible,
.menu button:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.menu-d {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--marfil);
}

.menu-d a {
    position: relative;
    padding: 10px 0;
    color: var(--negro);
    font-size: 16px;
}

.menu-d a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 1px;
    background: var(--borgona);
    transition: width .25s ease;
}

.menu-d a:hover,
.menu-d a.activo {
    color: var(--borgona);
}

.menu-d a:hover::after,
.menu-d a.activo::after {
    width: 100%;
}

/* =====================================================
   REDES
===================================================== */

.redes {

    position: absolute;

    right: 40px;
    top: 50%;

    transform:
        translateY(-50%);

    display: flex;

    align-items: center;

    gap: 17px;
}

.redes a {

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--borgona);

    font-size: 19px;

    text-decoration: none;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.redes a:hover {

    opacity: .6;

    transform:
        translateY(-2px);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    /*
       La fotografía es extremadamente panorámica.
       La mantenemos como fondo de portada, pero desplazamos
       ligeramente el encuadre para que la mesa floral quede
       como punto focal y no quede cortada de forma arbitraria.
    */
    background-image: url("../fotos/0203d887-dcb4-47ec-8e2a-30aff42fc139.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.01);

    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(36, 32, 31, .38) 0%,
            rgba(36, 32, 31, .18) 42%,
            rgba(36, 32, 31, .08) 72%,
            rgba(36, 32, 31, .18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(36, 32, 31, .06) 0%,
            rgba(36, 32, 31, .12) 55%,
            rgba(36, 32, 31, .38) 100%
        );
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at center,
            rgba(36, 32, 31, .08) 0%,
            rgba(36, 32, 31, .025) 48%,
            rgba(36, 32, 31, .10) 100%
        );
    z-index: 1;
}

.hero-contenido {
    position: relative;
    z-index: 2;
    width: min(94%, 1450px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}


 .hero-cta {
    position: absolute;
    z-index: 20;

    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin: 0;

    color: var(--marfil);
    text-decoration: none;

    font-family: "Lora", serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.4px;

    text-shadow:
        0 2px 6px rgba(36, 32, 31, .65),
        0 5px 14px rgba(36, 32, 31, .35);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.hero-cta i {
    font-size: 14px;
    transition: transform .25s ease;
}

.hero-cta:hover {
    transform: translateX(-50%) translateY(2px);
}



.hero-etiqueta {
    margin: 0 0 16px;
    color: var(--marfil);
    font-size: 30px;
    letter-spacing: 3.5px;
    
        text-shadow:
            0 2px 4px rgba(36, 32, 31, .75),
            0 5px 14px rgba(36, 32, 31, .58),
            0 9px 26px rgba(36, 32, 31, .38);

        transform: translateY(290px);

        animation: aparecerEtiqueta 1.5s ease-out .05s both;

}

.hero h1 {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;

    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
    align-items: center;
    column-gap: clamp(380px, 22vw, 540px);

    color: #FFF9F2;
    font-size: 0;
    line-height: 1.16;
    font-weight: 500;
    text-align: center;

    text-shadow:
        0 1px 2px rgba(110, 65, 72, .95),
        0 3px 10px rgba(110, 65, 72, .85),
        0 6px 24px rgba(36, 32, 31, .72);

    animation: aparecerTitulo 1.5s ease-out .2s both;
}

/*
   Las dos frases se convierten en dos bloques laterales.
   El espacio central queda libre para la modelo y el ramo.
*/
 .hero h1 .frase-izquierda,
.hero h1 .frase-derecha {
    display: block;
    width: 100%;
    justify-self: center;

    font-size: clamp(38px, 2.8vw, 50px);
    line-height: 1.12;
    font-weight: 500;
}

.hero h1 .linea {
    display: block;
    white-space: nowrap;
}

.hero h1 .frase-izquierda {
    grid-column: 1;
    text-align: right;
}

.hero h1 .frase-derecha {
    grid-column: 2;
    text-align: left;
}

/* Palabras destacadas: mismo rosa empolvado de la identidad */
.hero h1 em {
    display: inline-block;
    color: #F2D8D4;
    font-style: italic;

    text-shadow:
        0 1px 2px rgba(110, 65, 72, 1),
        0 3px 9px rgba(110, 65, 72, .9),
        0 5px 18px rgba(36, 32, 31, .7);
}

/*
   Las líneas decorativas pasan a acompañar cada bloque
   en vez de cruzar la composición central.
*/
.hero h1::before,
.hero h1::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42px;
    height: 1px;
    background: rgba(250, 248, 244, .8);
}

.hero h1::before {
    left: calc(50% - clamp(80px, 11vw, 190px) / 2 - 42px);
    transform: translateY(-50%);
}

.hero h1::after {
    right: calc(50% - clamp(80px, 11vw, 190px) / 2 - 42px);
    transform: translateY(-50%);
}

@keyframes aparecerEtiqueta {
    from {
        opacity: 0;
        transform: translateY(305px);
    }

    to {
        opacity: 1;
        transform: translateY(290px);
    }
}

@keyframes aparecerSubtitulo {
    from {
        opacity: 0;
        transform: translateY(calc(var(--hero-subtitulo-y) + 15px));
    }

    to {
        opacity: 1;
        transform: translateY(var(--hero-subtitulo-y));
    }
}

@keyframes aparecerTitulo {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-subtitulo {
    max-width: 680px;
    margin: 2px 0 25px;
    transform: translateY(100px);
    color: #FFF4EF;
    --hero-subtitulo-y: 100px;
    animation: aparecerSubtitulo 1.5s ease-out .35s both;
    font-size: 23px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: .2px;
    text-shadow:
        0 2px 7px rgba(36, 32, 31, .85),
        0 4px 14px rgba(36, 32, 31, .35);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 23px;
    color: var(--marfil);
    background: var(--borgona);
    border: 1px solid var(--borgona);
    font-size: 14px;
    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}





/* =====================================================
   CITA DEL HERO
   MISMO LENGUAJE VISUAL QUE "SOBRE NOSOTROS"
===================================================== */

.hero-cita {
    display: block;
    transform: translateX(550px);
    margin:
        20px 0 18px;

    color: #F1D6D2;

    font-family: "Lora", serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1.2px;

    text-shadow:
        0 2px 7px rgba(36, 32, 31, .75);

    opacity: .95;

    animation: aparecerCita 1.5s ease-out .2s both;
}

@keyframes aparecerCita {
    from {
        opacity: 0;
        transform: translateX(550px) translateY(15px);
    }

    to {
        opacity: .95;
        transform: translateX(550px) translateY(0);
    }
}

/* =====================================================
   HERO — MISMA COMPOSICIÓN EN TODO DISPOSITIVO NO MÓVIL
   PC · portátil · iPad · tablet · pantallas grandes
===================================================== */

@media (min-width: 769px) {

    .hero {
        height: 72vh;
        min-height: 470px;
        max-height: 760px;
        padding: 0;

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-contenido {
        width: min(94%, 1450px);
        max-width: 1450px;
        padding: 40px 20px;
    }

    .hero-cta {
        left: 50%;
        bottom: 40px;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .hero-etiqueta {
        margin-bottom: 16px;
        font-size: 45px;
        letter-spacing: 3.5px;
        transform: translateY(290px);
    }

    .hero h1 {
        width: 100%;
        max-width: 1500px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: clamp(380px, 22vw, 540px);
    }

    .hero h1 .frase-izquierda,
    .hero h1 .frase-derecha {
        width: 100%;
        max-width: none;
        font-size: clamp(38px, 2.8vw, 50px);
        line-height: 1.12;
    }

    .hero h1 .linea {
        display: block;
        white-space: nowrap;
    }

    .hero-cita {
        font-size: 22px;
        letter-spacing: 1.4px;
        margin-left: 340px;
        color: #F1D6D2
    }

    .hero-subtitulo {
        max-width: 680px;
        font-size: 23px;
    }

}

@media (max-width: 768px) {
    .hero h1 .linea {
        white-space: normal;
    }

    
.separador-todos:first-child h2 {
    margin-top: 25px !important;
    margin-bottom: 0px !important;
}

.separador-todos h2 {
    margin-top: 0px !important;
    margin-bottom: 25px !important;
}
@keyframes aparecerEtiquetaMovil {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aparecerCitaMovil {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: .95;
        transform: translateY(0);
    }
}


   
    .hero-cita {
        margin:
            -2px 0 15px;

        font-size: 12px;
        letter-spacing: 1px;
        color: #F1D6D2
    }

}

@media (max-width: 390px) {

    .hero-cita {
        font-size: 11px;
        margin-bottom: 13px;
        color: #F1D6D2
    }

}


/* =====================================================
   BENEFICIOS
===================================================== */

.beneficios {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--rosa-claro);
    border-bottom: 1px solid var(--linea);
}

.beneficio {
    min-width: 0;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    border-right: 1px solid rgba(110, 65, 72, .14);
}

.beneficio:last-child {
    border-right: 0;
}

.beneficio i {
    flex-shrink: 0;
    color: var(--rosa);
    font-size: 23px;
}

.beneficio div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.beneficio strong {
    color: var(--borgona);
    font-size: 14px;
    line-height: 1.2;
}

.beneficio span {
    color: var(--gris);
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.35;
}


/* =====================================================
   PRODUCTOS
===================================================== */

.productos {
    position: relative;
    isolation: isolate;
    width: 100%;
    padding: 40px 40px 110px;
    background: var(--marfil);
    overflow: hidden;
}

/* El contenido queda siempre por encima del fondo fotográfico */
.productos > * {
    position: relative;
    z-index: 2;
}

/* Fondo fotográfico: empieza debajo de cabecera + filtros */

/* El contenido queda siempre por encima del fondo fotográfico */

/*
   =========================================================
   FONDOS DEL CATÁLOGO
   =========================================================

   IMPORTANTE:
   La altura del pseudo-elemento coincide EXACTAMENTE con la
   proporción de la imagen. De esta forma el degradado termina
   antes de que desaparezca la fotografía y se funde con
   #FAF8F4 sin crear ninguna línea de corte.
*/

.productos::after {
    content: "";
    position: absolute;
    left: 0;
    top: 314px;
    width: 100%;
    z-index: 0;
    pointer-events: none;

    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 1;
}

/*
   El degradado se coloca como primera capa.
   La fotografía queda debajo.

   A partir del 90% de la altura de la imagen el resultado es
   completamente #FAF8F4. Por tanto, al llegar al último píxel
   de la fotografía ya no existe contraste con el fondo general.
*/

/* TODOS */
.productos.fondo-todos::after {
    aspect-ratio: 1672 / 941;
    opacity: 70%;
    background-image:
        linear-gradient(
            to bottom,
            rgba(250, 248, 244, 0) 48%,
            rgba(250, 248, 244, .08) 58%,
            rgba(250, 248, 244, .22) 66%,
            rgba(250, 248, 244, .45) 74%,
            rgba(250, 248, 244, .70) 82%,
            rgba(250, 248, 244, .90) 88%,
            #FAF8F4 94%,
            #FAF8F4 100%
        ),
        url("../fondos/7623cff2-c089-489a-9bd5-042e69ef9fca.png");
}

/* RAMOS */
.productos.fondo-ramos::after {
    opacity: 60%;
    aspect-ratio: 1672 / 941;
    background-image:
        linear-gradient(
            to bottom,
            rgba(250, 248, 244, 0) 48%,
            rgba(250, 248, 244, .08) 58%,
            rgba(250, 248, 244, .22) 66%,
            rgba(250, 248, 244, .45) 74%,
            rgba(250, 248, 244, .70) 82%,
            rgba(250, 248, 244, .90) 88%,
            #FAF8F4 94%,
            #FAF8F4 100%
        ),
        url("../fondos/2e7f0c35-0f9a-4234-95ae-5a80096e32AAAAAAAAAAAAAAAAc6.png");
}

/* BUQUÉS DE ROSAS */
.productos.fondo-buquesR::after {
    opacity: 60%;
    aspect-ratio: 1200 / 1400;
    background-image:
        linear-gradient(
            to bottom,
            rgba(250, 248, 244, 0) 48%,
            rgba(250, 248, 244, .08) 58%,
            rgba(250, 248, 244, .22) 66%,
            rgba(250, 248, 244, .45) 74%,
            rgba(250, 248, 244, .70) 82%,
            rgba(250, 248, 244, .90) 88%,
            #FAF8F4 94%,
            #FAF8F4 100%
        ),
        url("../fondos/a96a3f1c-2672-4161-88cd-0efe5eb4fcb2.png");
}

/* FLOR SECA / PRESERVADA */
.productos.fondo-florSeca::after {
    opacity: 60%;
    aspect-ratio: 1672 / 941;
    background-image:
        linear-gradient(
            to bottom,
            rgba(250, 248, 244, 0) 48%,
            rgba(250, 248, 244, .08) 58%,
            rgba(250, 248, 244, .22) 66%,
            rgba(250, 248, 244, .45) 74%,
            rgba(250, 248, 244, .70) 82%,
            rgba(250, 248, 244, .90) 88%,
            #FAF8F4 94%,
            #FAF8F4 100%
        ),
        url("../fondos/7623cff2-c089-489a-9bd5-042e69ef9fca.png");
}

/* CENTROS FLORALES */
.productos.fondo-centros::after {
    opacity: 60%;
    aspect-ratio: 1672 / 941;
    background-image:
        linear-gradient(
            to bottom,
            rgba(250, 248, 244, 0) 48%,
            rgba(250, 248, 244, .08) 58%,
            rgba(250, 248, 244, .22) 66%,
            rgba(250, 248, 244, .45) 74%,
            rgba(250, 248, 244, .70) 82%,
            rgba(250, 248, 244, .90) 88%,
            #FAF8F4 94%,
            #FAF8F4 100%
        ),
        url("../fondos/ChatGPT Image 28 ago 2026, 16_12_02.png");
}

/* COMPLEMENTOS / EVENTOS */
.productos.fondo-eventos::after {
    opacity: 60%;
    aspect-ratio: 1672 / 941;
    background-image:
        linear-gradient(
            to bottom,
            rgba(250, 248, 244, 0) 48%,
            rgba(250, 248, 244, .08) 58%,
            rgba(250, 248, 244, .22) 66%,
            rgba(250, 248, 244, .45) 74%,
            rgba(250, 248, 244, .70) 82%,
            rgba(250, 248, 244, .90) 88%,
            #FAF8F4 94%,
            #FAF8F4 100%
        ),
        url("../fondos/3e2dfe2a-7fc1-4c0a-ab44-86bdc3d2624a.png");
}

/*
   =========================================================
   MÓVIL / IPAD
   =========================================================
*/

@media (max-width: 768px) {

    /* RAMOS + TODOS */
    .productos.fondo-ramos::after,
    .productos.fondo-todos::after {
        opacity: 85%;
        aspect-ratio: 500 / 1844;
        background-image:
            
            url("../fondos/7283c74b-cdfc-4e09-8d26-811cfb0551b4.png");
    }

    
    /* BUQUÉS DE ROSAS */
    .productos.fondo-buquesR::after {
        aspect-ratio: 500 / 2000;
        opacity: 80%;
        background-image:
            linear-gradient(
                to bottom,
                rgba(250, 248, 244, 0) 48%,
                rgba(250, 248, 244, .08) 58%,
                rgba(250, 248, 244, .22) 66%,
                rgba(250, 248, 244, .45) 74%,
                rgba(250, 248, 244, .70) 82%,
                rgba(250, 248, 244, .90) 88%,
                #FAF8F4 94%,
                #FAF8F4 100%
            ),
            url("../fondos/5fe0dfea-9617-4645-932f-d3fe35de8eaf.png");
    }

    /* FLOR SECA / PRESERVADA */
    .productos.fondo-florSeca::after {
        aspect-ratio: 500 / 1672;
        opacity: 90%;
        background-image:
            linear-gradient(
                to bottom,
                rgba(250, 248, 244, 0) 48%,
                rgba(250, 248, 244, .08) 58%,
                rgba(250, 248, 244, .22) 66%,
                rgba(250, 248, 244, .45) 74%,
                rgba(250, 248, 244, .70) 82%,
                rgba(250, 248, 244, .90) 88%,
                #FAF8F4 94%,
                #FAF8F4 100%
            ),
            url("../fondos/3465b8c2-3e70-499c-bbc9-84834e329e50.png");
    }

    /* CENTROS FLORALES */
    .productos.fondo-centros::after {
        aspect-ratio: 50 / 1672;
        opacity: 80%;
        height: 4000px;
        background-image:
            
            url("../fondos/1c67bfe8-3605-4e7a-9eba-300d59ef59b0.png");
    }

    /* COMPLEMENTOS / EVENTOS */
    .productos.fondo-eventos::after {
        aspect-ratio: 853 / 1844;
        background-image:
            linear-gradient(
                to bottom,
                rgba(250, 248, 244, 0) 48%,
                rgba(250, 248, 244, .08) 58%,
                rgba(250, 248, 244, .22) 66%,
                rgba(250, 248, 244, .45) 74%,
                rgba(250, 248, 244, .70) 82%,
                rgba(250, 248, 244, .90) 88%,
                #FAF8F4 94%,
                #FAF8F4 100%
            ),
            url("../fondos/01a20372-44f5-445f-b102-44bfc3de5b08.png");
    }
}

/*
   iPad/tablet táctil en horizontal:
   utiliza las versiones verticales.
*/
@media (min-width: 769px) and (max-width: 1100px) and (pointer: coarse) {

    .productos.fondo-ramos::after,
    .productos.fondo-todos::after {
        aspect-ratio: 853 / 1844;
        background-image:
            linear-gradient(
                to bottom,
                rgba(250, 248, 244, 0) 48%,
                rgba(250, 248, 244, .08) 58%,
                rgba(250, 248, 244, .22) 66%,
                rgba(250, 248, 244, .45) 74%,
                rgba(250, 248, 244, .70) 82%,
                rgba(250, 248, 244, .90) 88%,
                #FAF8F4 94%,
                #FAF8F4 100%
            ),
            url("../fondos/01a20372-44f5-445f-b102-44bfc3de5b08.png");
    }

    .productos.fondo-buquesR::after {
        aspect-ratio: 864 / 1821;
        background-image:
            linear-gradient(
                to bottom,
                rgba(250, 248, 244, 0) 48%,
                rgba(250, 248, 244, .08) 58%,
                rgba(250, 248, 244, .22) 66%,
                rgba(250, 248, 244, .45) 74%,
                rgba(250, 248, 244, .70) 82%,
                rgba(250, 248, 244, .90) 88%,
                #FAF8F4 94%,
                #FAF8F4 100%
            ),
            url("../fondos/5fe0dfea-9617-4645-932f-d3fe35de8eaf.png");
    }

    .productos.fondo-florSeca::after {
        aspect-ratio: 941 / 1672;
        background-image:
            linear-gradient(
                to bottom,
                rgba(250, 248, 244, 0) 48%,
                rgba(250, 248, 244, .08) 58%,
                rgba(250, 248, 244, .22) 66%,
                rgba(250, 248, 244, .45) 74%,
                rgba(250, 248, 244, .70) 82%,
                rgba(250, 248, 244, .90) 88%,
                #FAF8F4 94%,
                #FAF8F4 100%
            ),
            url("../fondos/3465b8c2-3e70-499c-bbc9-84834e329e50.png");
    }

    .productos.fondo-centros::after {
        aspect-ratio: 941 / 1672;
        background-image:
            linear-gradient(
                to bottom,
                rgba(250, 248, 244, 0) 48%,
                rgba(250, 248, 244, .08) 58%,
                rgba(250, 248, 244, .22) 66%,
                rgba(250, 248, 244, .45) 74%,
                rgba(250, 248, 244, .70) 82%,
                rgba(250, 248, 244, .90) 88%,
                #FAF8F4 94%,
                #FAF8F4 100%
            ),
            url("../fondos/dae31a08-ca8c-4257-9bfe-f2a428b21d1d.png");
    }

    .productos.fondo-eventos::after {
        aspect-ratio: 853 / 1844;
        background-image:
            linear-gradient(
                to bottom,
                rgba(250, 248, 244, 0) 48%,
                rgba(250, 248, 244, .08) 58%,
                rgba(250, 248, 244, .22) 66%,
                rgba(250, 248, 244, .45) 74%,
                rgba(250, 248, 244, .70) 82%,
                rgba(250, 248, 244, .90) 88%,
                #FAF8F4 94%,
                #FAF8F4 100%
            ),
            url("../fondos/01a20372-44f5-445f-b102-44bfc3de5b08.png");
    }
}

.productos-contenido {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
}

.productos-cabecera {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.seccion-etiqueta {
    display: block;
    margin-bottom: 10px;
    color: var(--rosa);
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
}

.productos-cabecera h2 {
    margin: 0 0 13px;
    color: var(--borgona);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
}

.productos-cabecera h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    margin: 20px auto 0;
    background: var(--champagne);
}

.productos-cabecera p {
    max-width: 610px;
    margin: 20px auto 0;
    color: var(--gris);
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   FILTROS
===================================================== */

.filtros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--linea);
}

.filtro {
    padding: 9px 17px;
    color: var(--gris);
    background: transparent;
    border: 1px solid rgba(110, 65, 72, .22);
    cursor: pointer;
    font-size: 12px;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.filtro:hover,
.filtro.activo {
    color: var(--marfil);
    background: var(--borgona);
    border-color: var(--borgona);
}

.subfiltros-ramos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 0;
    margin-top: -14px;
    margin-bottom: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
        max-height .35s ease,
        margin .35s ease,
        opacity .25s ease,
        transform .35s ease;
}

.subfiltros-ramos.visible {
    max-height: 100px;
    margin-top: -14px;
    margin-bottom: 28px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.subfiltro {
    padding: 7px 14px;
    color: var(--gris);
    background: transparent;
    border: 1px solid rgba(110, 65, 72, .16);
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.subfiltro:hover,
.subfiltro.activo {
    color: var(--marfil);
    background: var(--rosa);
    border-color: var(--rosa);
}


/* =====================================================
   GRID PRODUCTOS
===================================================== */

.productos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.producto {
    min-width: 0;
    background: var(--blanco);
    border: 1px solid rgba(110, 65, 72, .12);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}
.producto:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra);
}

.producto-imagen {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--rosa-claro);
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}
.separador-tocados {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 55px 0 25px;
    padding: 22px 0 20px;
    border-top: 1px solid rgba(90, 70, 65, 0.22);
    border-bottom: 1px solid rgba(90, 70, 65, 0.22);
}

.separador-tocados h2 {
    margin: 0;
    font-family: inherit;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6f5a5a;
}

.separador-tocados::after {
    content: "Diseños florales para el cabello";
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #9a8985;
}

@media (max-width: 768px) {

    .separador-tocados {
        margin: 30px 0 30px;
        padding: 18px 0 17px;
        gap: 8px;
    }

    .separador-tocados h2 {
        font-size: 17px;
        letter-spacing: 2.5px;
    }

    .separador-tocados::after {
        font-size: 10px;
        letter-spacing: .7px;
    }

}

.producto:hover .producto-imagen img {
    transform: scale(1.035);
}

.producto-info {
    padding: 18px;
}

.producto-info h3 {
    margin: 0 0 8px;
    color: var(--negro);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
}

.producto-info p {
    min-height: 38px;
    margin: 0 0 15px;
    color: var(--gris);
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.55;
}

.contactar-whatsapp {
    width: 100%;
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 10px;
    color: var(--marfil);
    background: var(--borgona);
    border: 1px solid var(--borgona);
    font-size: 12px;
    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.contactar-whatsapp:hover {
    color: var(--borgona);
    background: var(--marfil);
}

.contactar-whatsapp i {
    font-size: 16px;
}


/* =====================================================
   CTA FINAL
===================================================== */

.cta-final {
    position: relative;
    width: 100%;
    padding: 100px 30px;
    overflow: hidden;
    color: var(--marfil);
    background:
        linear-gradient(
            135deg,
            var(--borgona),
            var(--borgona-oscuro)
        );
    text-align: center;
}

.cta-final-contenido {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-final span {
    color: var(--rosa-claro);
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
}

.cta-final h2 {
    margin: 15px 0;
    color: var(--marfil);
    font-size: 46px;
    line-height: 1.12;
    font-weight: 500;
}

.cta-final p {
    max-width: 510px;
    margin: 0 auto 28px;
    color: rgba(250, 248, 244, .82);
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.7;
}

.cta-final a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 14px 23px;
    color: var(--borgona);
    background: var(--marfil);
    font-size: 13px;
    transition:
        transform .2s ease,
        background-color .2s ease;
}

.cta-final a:hover {
    background: var(--blanco);
    transform: translateY(-2px);
}


/* =====================================================
   RESPONSIVE — MISMA COMPOSICIÓN DE ESCRITORIO
   ===================================================== */

@media (max-width: 1200px) {

    nav {
        height: 120px;
        padding: 20px 28px;
    }

    .logo {
        width: 145px;
        height: 90px;
    }

    .menu {
        left: 28px;
    }

    .redes {
        right: 28px;
    }
.productos {
        padding-left: 30px;
        padding-right: 30px;
    }

    .productos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* =====================================================
   TABLET — CONSERVAR DOS LATERALES
   ===================================================== */

@media (min-width: 769px) and (max-width: 900px) {

    nav {
        height: 112px;
        padding: 15px 25px;
    }

    .logo {
        width: 140px;
        height: 82px;
    }

    .menu {
        left: 25px;
    }

    .menu-d {
        gap: 15px;
    }

    .menu-d a {
        font-size: 14px;
    }

    .redes {
        right: 25px;
        gap: 12px;
    }

    .redes a {
        font-size: 16px;
    }
.productos {
        padding: 70px 25px 85px;
    }

    .productos-grid {
        gap: 18px;
    }
}


/* =====================================================
   MÓVIL — COMPOSICIÓN ORIGINAL
   ===================================================== */

@media (max-width: 768px) {

    nav {
        height: 78px;
        padding: 6px 14px;
    }

    .logo {
        width: 135px;
        height: 58px;
    }

    
    
    .menu {
        position: static;
        transform: none;
    }

    .menu button {
        position: absolute;
        left: 9px;
        top: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        color: var(--borgona);
        background: transparent;
        border: 0;
        font-size: 25px;
        z-index: 4000;
    }

    .menu-d {
        position: fixed;
        top: 78px;
        left: 0;
        width: min(84vw, 350px);
        height: calc(100vh - 78px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 22px;
        background: var(--marfil);
        box-shadow: 8px 0 30px rgba(36, 32, 31, .13);
        transform: translateX(-100%);
        transition: transform .35s cubic-bezier(.22,.61,.36,1);
        overflow-y: auto;
    }

    .menu-d.abierto {
        transform: translateX(0);
    }

    .menu-d a {
        width: 100%;
        padding: 18px 3px;
        color: var(--negro) !important;
        border-bottom: 1px solid rgba(110, 65, 72, .12);
        font-size: 17px;
    }

    .menu-d a::after {
        display: none;
    }

    .redes {
        right: 11px;
        gap: 8px;
    }

    .redes a {
        font-size: 15px;
    }

    /* HERO — composición móvil original */
    .hero {
        height: 410px;
        min-height: 0;
        padding: 20px 12px;
        background-size: cover;
        background-position: center 42%;
        background-repeat: no-repeat;
        background-color: #FAF8F4;
    }

    .hero-contenido {
        width: 100%;
        max-width: 520px;
        padding: 25px 10px;
    }

    .hero-etiqueta {
        margin-bottom: 10px;
        font-size: 17px;
        letter-spacing: 2.4px;
        transform: translateY(0);
        animation-name: aparecerEtiquetaMovil;
    }

    .hero h1 {
        max-width: 100%;
        display: block;
        padding: 15px 6px;
        font-size: 0;
        line-height: 1.2;
    }

    .hero h1 .frase-izquierda,
    .hero h1 .frase-derecha {
        width: 100%;
        max-width: 100%;
        display: block;
        text-align: center;
        font-size: 27px;
        line-height: 1.2;
    }

    .hero h1 .frase-izquierda {
        margin-bottom: 8px;
    }

    .hero h1::before,
    .hero h1::after {
        display: none;
    }

    .hero-cita {
        transform: none;
        margin: 10px auto 15px;
        animation-name: aparecerCitaMovil;
        text-align: center;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-subtitulo {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: .1px;
        --hero-subtitulo-y: 0px;
    }

    /* BENEFICIOS */
    .beneficios {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .beneficio {
        min-height: 86px;
        gap: 7px;
        padding: 10px 7px;
    }

    .beneficio i {
        font-size: 17px;
    }

    .beneficio div {
        gap: 2px;
    }

    .beneficio strong {
        font-size: 10px;
    }

    .beneficio span {
        font-size: 8px;
    }

    /* PRODUCTOS */
    .productos {
        padding: 40px 17px 78px;
    }

    .productos-cabecera {
        margin-bottom: 30px;
    }

    .seccion-etiqueta {
        margin-bottom: 8px;
        font-size: 9px;
        letter-spacing: 2px;
    }

    .productos-cabecera h2 {
        margin-bottom: 10px;
        font-size: 31px;
        line-height: 1.18;
    }

    .productos-cabecera h2::after {
        width: 45px;
        margin-top: 16px;
    }

    .productos-cabecera p {
        margin-top: 16px;
        font-size: 12px;
        line-height: 1.65;
    }

    /* FILTROS */
    .filtros {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 7px;
        margin-bottom: 22px;
        padding-bottom: 13px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .filtros::-webkit-scrollbar {
        display: none;
    }

    .filtro {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 9px 14px;
        font-size: 11px;
    }

    .subfiltros-ramos {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 6px;
        margin-top: -14px;
        max-width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .subfiltros-ramos::-webkit-scrollbar {
        display: none;
    }

    .subfiltros-ramos.visible {
        max-height: 55px;
        margin-top: 0px;
        margin-bottom: 23px;
        overflow-x: auto;
    }

    .subfiltro {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 7px 11px;
        font-size: 10px;
    }

    /* GRID PRODUCTOS */
    .productos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .producto {
        border-color: rgba(110, 65, 72, .13);
    }

    .producto:hover {
        transform: none;
        box-shadow: none;
    }

    .producto-info {
        padding: 12px;
    }

    .producto-info h3 {
        margin-bottom: 3px;
        font-size: 14px;
        line-height: 1.3;
    }

    .producto-info p {
        min-height: 35px;
        margin-bottom: 10px;
        font-size: 9.5px;
        line-height: 1.45;
    }

    .contactar-whatsapp {
        min-height: 42px;
        padding: 9px 5px;
        font-size: 10px;
    }

    .contactar-whatsapp i {
        font-size: 14px;
    }

    /* CTA */
    .cta-final {
        padding: 75px 20px;
    }

    .cta-final span {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .cta-final h2 {
        margin: 14px 0;
        font-size: 34px;
        line-height: 1.15;
    }

    .cta-final p {
        max-width: 340px;
        margin-bottom: 25px;
        font-size: 12px;
        line-height: 1.65;
    }

    .cta-final a {
        width: 100%;
        max-width: 300px;
        min-height: 49px;
        padding: 13px 20px;
        font-size: 13px;
    }

    .hero-scroll {
        display: none;
    }
}


/* =====================================================
   MÓVIL PEQUEÑO
   ===================================================== */

@media (max-width: 480px) {

    .logo {
        width: 125px;
    }

    .redes {
        right: 9px;
        gap: 0px;
    }

    .redes a {
        font-size: 16px;
        margin-right:15px;
    }

    .hero {
        height: 390px;
        background-size: cover;
        background-position: center 42%;
    }

    .hero-contenido {
        padding: 20px 5px;
    }

    .hero-etiqueta {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 25px;
        padding: 13px 5px;
    }

    .hero h1 .frase-izquierda,
    .hero h1 .frase-derecha {
        font-size: 25px;
    }

    .hero-subtitulo {
        max-width: 300px;
        --hero-subtitulo-y: 30px;
        font-size: 13px;
    }

    .beneficio {
        min-height: 78px;
        gap: 5px;
        padding: 8px 4px;
    }

    .beneficio i {
        font-size: 13px;
    }

    .beneficio strong {
        font-size: 9px;
    }

    .beneficio span {
        font-size: 7px;
    }

    .productos {
        padding-left: 10px;
        padding-right: 10px;
    }

    .productos-cabecera h2 {
        font-size: 28px;
    }

    .productos-grid {
        gap: 9px;
    }

    .producto-info {
        padding: 9px;
    }

    .producto-info h3 {
        font-size: 13px;
    }

    .producto-info p {
        font-size: 8.5px;
    }

    .contactar-whatsapp {
        font-size: 9px;
    }

    .cta-final {
        padding: 68px 16px;
    }

    .cta-final h2 {
        font-size: 30px;
    }
}


/* =====================================================
   MÓVIL MUY PEQUEÑO
   ===================================================== */

@media (max-width: 360px) {

    .hero {
        height: 375px;
        background-size: cover;
        background-position: center 42%;
    }

    .hero h1 .frase-izquierda,
    .hero h1 .frase-derecha {
        font-size: 23px;
    }

}

/* =====================================================
   INDICADOR DE SCROLL DEL HERO
===================================================== */

.hero-scroll {
    position: absolute;
    right: 35px;
    bottom: 28px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--marfil);

    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;

    text-shadow:
        0 2px 6px rgba(36, 32, 31, .7);
}

.hero-scroll i {
    font-size: 13px;
}


/* =====================================================
   DECORACIÓN DEL CTA
===================================================== */

.cta-decoration {
    position: absolute;
    z-index: 1;

    color: rgba(250, 248, 244, .07);

    font-size: 220px;
    line-height: 1;

    pointer-events: none;
}

.cta-decoration-left {
    left: -45px;
    bottom: -85px;
}

.cta-decoration-right {
    right: -45px;
    top: -85px;
}


/* =====================================================
   FOOTER
   MISMA ESTÉTICA QUE SOBRE NOSOTROS
===================================================== */

.footer {
    width: 100%;

    padding:
        65px 40px 25px;

    background: var(--negro);

    color: var(--marfil);
}

.footer-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 45px;

    border-bottom:
        1px solid rgba(250, 248, 244, .12);
}

.footer-brand img {
    width: 145px;
    height: auto;
    display: block;
}

.footer-brand p {
    max-width: 280px;

    margin:
        18px 0 0;

    color:
        rgba(250, 248, 244, .55);

    font-family: Arial, sans-serif;

    font-size: 12px;
    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h3 {
    margin:
        0 0 8px;

    color: var(--rosa-claro);

    font-size: 14px;
    font-weight: 500;
}

.footer-column a {
    width: fit-content;

    color:
        rgba(250, 248, 244, .58);

    font-family: Arial, sans-serif;

    font-size: 12px;

    transition:
        color .2s ease;
}

.footer-column a:hover {
    color: var(--marfil);
}

.footer-bottom {
    width: 100%;
    max-width: 1200px;

    margin:
        20px auto 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color:
        rgba(250, 248, 244, .35);

    font-family: Arial, sans-serif;

    font-size: 10px;
}


/* =====================================================
   FOOTER — TABLET
===================================================== */

@media (max-width: 1100px) {

    .footer {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-container {
        gap: 35px;
    }
}


/* =====================================================
   FOOTER — MÓVIL
===================================================== */

@media (max-width: 768px) {

    .hero-scroll {
        display: none;
    }

    .cta-decoration {
        font-size: 145px;
    }

    .cta-decoration-left {
        left: -35px;
        bottom: -55px;
    }

    .cta-decoration-right {
        right: -35px;
        top: -55px;
    }

    .footer {
        padding:
            55px 20px 22px;
    }

    .footer-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            35px 25px;

        padding-bottom: 35px;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

    .footer-brand img {
        width: 135px;
    }

    .footer-brand p {
        max-width: 280px;
        margin-top: 15px;
        font-size: 12px;
    }

    .footer-column {
        gap: 10px;
    }

    .footer-column h3 {
        font-size: 13px;
    }

    .footer-column a {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        margin-top: 18px;
        font-size: 9px;
    }
}


/* =====================================================
   FOOTER — MÓVIL PEQUEÑO
===================================================== */

@media (max-width: 390px) {

    .footer {
        padding:
            48px 15px 18px;
    }

    .footer-container {
        gap:
            28px 15px;
    }

    .footer-brand img {
        width: 125px;
    }

    .footer-brand p {
        font-size: 11px;
    }

    .footer-column h3 {
        font-size: 12px;
    }

    .footer-column a {
        font-size: 11px;
    }

    .footer-bottom {
        font-size: 8.5px;
    }
}



/* =====================================================
   MÓVIL MUY PEQUEÑO
   360px O MENOS
   MISMA DIMENSIÓN QUE SOBRE NOSOTROS
===================================================== */

@media (max-width: 360px) {

    .hero {
        height: 375px;
        background-size: cover;
        background-position: center 42%;
        background-repeat: no-repeat;
        transform: scale(1.01);
        background-color: #FAF8F4;
    }

}


/* =====================================================
   iPAD — COMPOSICIÓN CORREGIDA
   Las frases mantienen sus 2 líneas sin cortarse.
   PC permanece completamente intacto.
===================================================== */

/* iPad horizontal */
@media (min-width: 769px) and (max-width: 1024px) and (pointer: coarse) {

    .hero {
        height: clamp(560px, 64vh, 680px);
        min-height: 560px;
        max-height: 680px;
        padding: 0;
        background-size: cover;
        background-position: center center;
    }

    .hero-contenido {
        width: 96%;
        max-width: 1000px;
        padding: 25px 10px;
    }

    .hero-etiqueta {
        font-size: 38px;
        letter-spacing: 3px;
        transform: translateY(215px);
    }

    .hero h1 {
        width: 100%;
        max-width: 1000px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: clamp(70px, 9vw, 110px);
    }

    .hero h1 .frase-izquierda,
    .hero h1 .frase-derecha {
        width: 100%;
        min-width: 0;
        font-size: clamp(25px, 3vw, 34px);
        line-height: 1.15;
    }

    .hero h1 .linea {
        display: block;
        white-space: nowrap;
    }

    .hero-cita {
        margin-left: 80px;
        font-size: 17px;
        letter-spacing: 1px;
    }

    .hero-subtitulo {
        --hero-subtitulo-y: 0px;
        width: min(80%, 500px);
        max-width: 500px;
        margin: 8px auto 0;
        transform: none;
        font-size: 18px;
        line-height: 1.45;
        text-align: center;
    }

}

/* iPad vertical */
@media (min-width: 700px) and (max-width: 768px) and (pointer: coarse) {

    .hero {
        height: 560px;
        min-height: 560px;
        max-height: 560px;
        padding: 0 10px;
        background-size: cover;
        background-position: center center;
    }

    .hero-contenido {
        width: 98%;
        max-width: 760px;
        padding: 20px 5px;
    }

    .hero-etiqueta {
        font-size: 29px;
        letter-spacing: 2.5px;
        transform: translateY(175px);
    }

    .hero h1 {
        width: 100%;
        max-width: 760px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 55px;
    }

    .hero h1 .frase-izquierda,
    .hero h1 .frase-derecha {
        width: 100%;
        min-width: 0;
        font-size: 25px;
        line-height: 1.15;
    }

    .hero h1 .linea {
        display: block;
        white-space: nowrap;
    }

    .hero-cita {
        margin-left: 55px;
        font-size: 15px;
        letter-spacing: .9px;
    }

    .hero-subtitulo {
        --hero-subtitulo-y: 0px;
        width: min(86%, 460px);
        max-width: 460px;
        margin: 8px auto 0;
        transform: none;
        font-size: 16px;
        line-height: 1.45;
        text-align: center;
    }

}


/* =====================================================
   REDUCIR MOVIMIENTO SI EL USUARIO LO SOLICITA
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .hero h1,
    .hero-etiqueta,
    .hero-subtitulo,
    .producto,
    .producto-imagen img,
    .hero-cta,
    .contactar-whatsapp {
        animation: none !important;
        transition: none !important;
    }
}


/* =====================================================
   PANTALLAS GRANDES
===================================================== */

@media (min-width: 1400px) {

    .productos {
        padding:70px;
    }

    .productos-contenido {
        max-width: 1320px;
    }

    .productos-grid {
        gap: 28px;
    }
}


.quote{
    margin-top: 10px;
}




/* =====================================================
   HERO SUBTÍTULO — RESPONSIVE FINAL
   Evita cortes, solapamientos y desaparición del texto.
===================================================== */

/* iPad / tablet horizontal */
@media (min-width: 769px) and (max-width: 1024px) and (pointer: coarse) {

    .hero-subtitulo {
        width: min(88%, 560px);
        max-width: 560px;
        margin: 8px auto 20px;
        transform: none;
        font-size: 19px;
        line-height: 1.45;
        text-align: center;
        overflow-wrap: normal;
        word-break: normal;
    }

}

/* iPad / tablet vertical */
@media (min-width: 700px) and (max-width: 768px) and (pointer: coarse) {

    .hero-subtitulo {
        width: min(88%, 500px);
        max-width: 500px;
        margin: 8px auto 18px;
        transform: none;
        font-size: 18px;
        line-height: 1.45;
        text-align: center;
        overflow-wrap: normal;
        word-break: normal;
    }

}

/* Todo móvil */
@media (max-width: 768px) {

    .hero-subtitulo {
        width: min(90%, 430px);
        max-width: 430px;
        margin: 8px auto 16px;
        transform: none;
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.5;
        text-align: center;
        overflow-wrap: normal;
        word-break: normal;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {

    .hero-subtitulo {
        width: min(90%, 330px);
        max-width: 330px;
        transform: translateY(30px);
        font-size: clamp(12px, 3.6vw, 14px);
        line-height: 1.45;
    }
}

/* Móvil muy pequeño */
@media (max-width: 360px) {

    .hero-subtitulo {
        width: min(92%, 300px);
        max-width: 300px;
        margin: 5px auto 12px;
        font-size: 12px;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        display: none !important;
    }
    
}


/* =====================================================
   FLORS I PASSIÓ — REFINAMIENTO PROFESIONAL / CONVERSIÓN
   Mantiene la estructura y la identidad visual existentes.
===================================================== */

/* ---------- Base visual ---------- */

:root {
    --sombra-suave: 0 10px 30px rgba(36, 32, 31, .08);
    --sombra-hover: 0 18px 42px rgba(110, 65, 72, .15);
    --radio-suave: 2px;
}

::selection {
    color: var(--marfil);
    background: var(--borgona);
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--champagne);
    outline-offset: 4px;
}


/* ---------- Navegación ---------- */

nav {
    box-shadow: 0 1px 0 rgba(110, 65, 72, .04);
}

.menu-d a {
    letter-spacing: .15px;
    transition:
        color .25s ease,
        opacity .25s ease;
}

.menu-d a:hover {
    opacity: .82;
}

.redes a {
    transition:
        color .25s ease,
        opacity .25s ease,
        transform .25s ease;
}


/* ---------- Hero: más claridad y jerarquía ---------- */

.hero::after {
    background:
        linear-gradient(
            90deg,
            rgba(36, 32, 31, .43) 0%,
            rgba(36, 32, 31, .20) 40%,
            rgba(36, 32, 31, .06) 70%,
            rgba(36, 32, 31, .15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(36, 32, 31, .03) 0%,
            rgba(36, 32, 31, .10) 52%,
            rgba(36, 32, 31, .42) 100%
        );
}

.hero h1 .frase-izquierda,
.hero h1 .frase-derecha {
    letter-spacing: -.25px;
}

.hero h1 em {
    color: #F5D9D5;
}

.hero-subtitulo {
    text-wrap: balance;
}

.hero-cta {
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid rgba(250, 248, 244, .55);
    background: rgba(93, 56, 63, .88);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 8px 22px rgba(36, 32, 31, .18);
    transition:
        background-color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.hero-cta:hover {
    color: var(--marfil);
    background: var(--borgona);
    border-color: rgba(250, 248, 244, .8);
    box-shadow: 0 12px 28px rgba(36, 32, 31, .24);
    transform: translateX(-50%) translateY(-2px);
}


/* ---------- Beneficios: si se utilizan en la estructura ---------- */

.beneficios {
    box-shadow: inset 0 -1px 0 rgba(110, 65, 72, .05);
}

.beneficio {
    transition: background-color .25s ease;
}

.beneficio:hover {
    background: rgba(250, 248, 244, .22);
}


/* ---------- Catálogo ---------- */

.productos {
    padding-top: 50px;
}

.productos-cabecera {
    max-width: 760px;
}

.seccion-etiqueta {
    font-weight: 600;
}

.productos-cabecera h2 {
    font-size: clamp(32px, 3.1vw, 42px);
    letter-spacing: -.3px;
}

.productos-cabecera p {
    max-width: 620px;
    font-size: 13px;
    text-wrap: balance;
}


/* Señales de confianza: discretas para no romper la estética */

.catalogo-confianza {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 22px;
    margin-top: 24px;
    color: var(--borgona);
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: .2px;
}

.catalogo-confianza span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.catalogo-confianza i {
    color: var(--rosa);
    font-size: 12px;
}


/* ---------- Filtros ---------- */

.filtros {
    gap: 9px;
}

.filtro {
    min-height: 38px;
    border-radius: 999px;
    padding-inline: 18px;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.filtro:hover {
    transform: translateY(-1px);
}

.filtro.activo {
    box-shadow: 0 5px 14px rgba(110, 65, 72, .12);
}

.subfiltro {
    border-radius: 999px;
}

.subfiltro:hover {
    transform: translateY(-1px);
}


/* ---------- Tarjetas de producto ---------- */

.productos-grid {
    align-items: start;
}

.producto {
    border-radius: var(--radio-suave);
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(110, 65, 72, .02);
    transition:
        transform .3s cubic-bezier(.22,.61,.36,1),
        box-shadow .3s ease,
        border-color .3s ease;
}

.producto:hover {
    transform: translateY(-6px);
    border-color: rgba(110, 65, 72, .18);
    box-shadow: var(--sombra-hover);
}

.producto-imagen {
    position: relative;
    background: #F0E3E0;
}

.producto-imagen::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 70%,
        rgba(36, 32, 31, .06) 100%
    );
}

.producto-info {
    padding: 19px;
}

.producto-info h3 {
    letter-spacing: -.1px;
}

.producto-info p {
    text-wrap: balance;
}

.contactar-whatsapp {
    min-height: 45px;
    border-radius: 1px;
    font-weight: 500;
    letter-spacing: .15px;
    box-shadow: 0 5px 15px rgba(110, 65, 72, .08);
    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.contactar-whatsapp:hover {
    color: var(--marfil);
    background: var(--borgona-oscuro);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(110, 65, 72, .16);
}


/* ---------- CTA final ---------- */

.cta-final {
    padding: clamp(82px, 9vw, 120px) 30px;
}

.cta-final h2 {
    letter-spacing: -.4px;
}

.cta-final p {
    text-wrap: balance;
}

.cta-final-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 49px;
    margin-top: 2px;
    padding: 13px 24px;
    color: var(--borgona);
    background: var(--marfil);
    border: 1px solid rgba(250, 248, 244, .65);
    font-size: 13px;
    box-shadow: 0 8px 22px rgba(36, 32, 31, .12);
    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.cta-final-boton:hover {
    color: var(--borgona);
    background: var(--blanco);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(36, 32, 31, .18);
}

.cta-final-boton i {
    transition: transform .25s ease;
}

.cta-final-boton:hover i {
    transform: translateX(3px);
}


/* ---------- Footer ---------- */

.footer-column a {
    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-column a:hover {
    transform: translateX(2px);
}


/* =====================================================
   RESPONSIVE DEL REFINAMIENTO
===================================================== */

@media (max-width: 768px) {

    .catalogo-confianza {
        gap: 8px 14px;
        margin-top: 20px;
        font-size: 9px;
    }

    .catalogo-confianza span {
        white-space: normal;
        justify-content: center;
    }

    .producto:hover {
        transform: none;
        box-shadow: none;
    }

    .cta-final-boton {
        width: 100%;
        max-width: 300px;
    }

}

@media (max-width: 480px) {

    .catalogo-confianza {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .catalogo-confianza span {
        justify-content: center;
    }

}


/* ---------- Accesibilidad / rendimiento visual ---------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}

@media(max-width:430px){
    .catalogo-confianza{
        display: none;
    }
}


/* =====================================================
   HERO MÓVIL — LEGIBILIDAD PREMIUM
   Más contraste y presencia sin oscurecer demasiado
   la fotografía.
===================================================== */

@media (max-width: 768px) {

    .hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(36, 32, 31, .18) 0%,
                rgba(36, 32, 31, .24) 42%,
                rgba(36, 32, 31, .50) 100%
            ),
            linear-gradient(
                90deg,
                rgba(36, 32, 31, .20) 0%,
                rgba(36, 32, 31, .08) 50%,
                rgba(36, 32, 31, .20) 100%
            );
    }

    .hero-overlay {
        background:
            radial-gradient(
                ellipse at center,
                rgba(36, 32, 31, .03) 0%,
                rgba(36, 32, 31, .08) 62%,
                rgba(36, 32, 31, .18) 100%
            );
    }

    .hero-etiqueta {
        color: #FFF9F2;
        font-weight: 500;
        text-shadow:
            0 2px 4px rgba(36, 32, 31, .80),
            0 4px 12px rgba(36, 32, 31, .55);
    }

    .hero h1 .frase-izquierda,
    .hero h1 .frase-derecha {
        color: #FFF9F2;
        font-weight: 500;
        text-shadow:
            0 2px 3px rgba(36, 32, 31, .92),
            0 4px 12px rgba(36, 32, 31, .72),
            0 7px 22px rgba(36, 32, 31, .42);
    }

    .hero h1 em {
        color: #F6D8D5;
        text-shadow:
            0 2px 3px rgba(110, 65, 72, .95),
            0 4px 12px rgba(36, 32, 31, .70);
    }

    .hero-cita {
        color: #F7DCD8;
        font-weight: 500;
        text-shadow:
            0 2px 5px rgba(36, 32, 31, .90),
            0 4px 12px rgba(36, 32, 31, .55);
    }

    .hero-subtitulo {
        color: #FFF8F3;
        font-weight: 500;
        text-shadow:
            0 2px 5px rgba(36, 32, 31, .92),
            0 4px 13px rgba(36, 32, 31, .60);
    }

}

/* Móviles pequeños: un poco más de contraste, manteniendo
   la fotografía visible. */
@media (max-width: 480px) {

    .hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(36, 32, 31, .20) 0%,
                rgba(36, 32, 31, .27) 48%,
                rgba(36, 32, 31, .53) 100%
            ),
            linear-gradient(
                90deg,
                rgba(36, 32, 31, .18) 0%,
                rgba(36, 32, 31, .07) 50%,
                rgba(36, 32, 31, .18) 100%
            );
    }

    .hero h1 .frase-izquierda,
    .hero h1 .frase-derecha {
        text-shadow:
            0 2px 3px rgba(36, 32, 31, .95),
            0 4px 11px rgba(36, 32, 31, .78),
            0 7px 18px rgba(36, 32, 31, .48);
    }

}

/* =====================================================
   MENÚ MÓVIL — COMPORTAMIENTO PROFESIONAL
   Apertura, cierre, scroll y zonas táctiles.
===================================================== */

@media (max-width: 768px) {

    body.menu-abierto {
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.menu-abierto .menu-d {
        visibility: visible;
    }

    .menu button {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 4002;
        border-radius: 50%;
        touch-action: manipulation;
    }

    .menu button i {
        pointer-events: none;
        font-size: 25px;
        line-height: 1;
    }

    .menu-d {
        top: 78px;
        left: 0;
        width: min(84vw, 350px);
        height: calc(100dvh - 78px);
        max-height: calc(100dvh - 78px);
        padding: 22px;
        padding-bottom: max(22px, env(safe-area-inset-bottom));
        visibility: hidden;
        z-index: 4001;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        box-shadow: 12px 0 35px rgba(36, 32, 31, .14);
    }

    .menu-d.abierto {
        visibility: visible;
    }

    .menu-d a {
        min-height: 54px;
        display: flex;
        align-items: center;
        padding: 15px 4px;
        font-size: 17px;
        touch-action: manipulation;
    }

    /* Fondo fuera del panel: lo crea JS cuando se abre el menú. */
    .menu-backdrop {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        height: calc(100dvh - 78px);
        background: rgba(36, 32, 31, .18);
        backdrop-filter: blur(1.5px);
        -webkit-backdrop-filter: blur(1.5px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 4000;
        transition: opacity .28s ease, visibility .28s ease;
        touch-action: manipulation;
    }

    .menu-backdrop.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 480px) {

    .menu-d {
        width: min(88vw, 340px);
    }

    .menu-d a {
        min-height: 52px;
        font-size: 16px;
    }

}

@media (min-width: 769px) {

    .menu-backdrop {
        display: none !important;
    }

}


/* =====================================================
   NAVBAR STICKY — FLUIDO
===================================================== */
@media(max-width:430px){
nav {
    transition:
        background-color .3s ease,
        box-shadow .3s ease,
        transform .4s cubic-bezier(.22, .61, .36, 1);
}


/* Estado al hacer scroll */

nav.navbar-scroll {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(250, 248, 244, .97);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 5px 24px rgba(36, 32, 31, .09);

    animation: navbarAparecer .4s
        cubic-bezier(.22, .61, .36, 1)
        both;

}


/* Entrada suave */

@keyframes navbarAparecer {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}
}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 768px) {

    nav.navbar-scroll {

        background: rgba(250, 248, 244, .98);

        box-shadow:
            0 4px 20px rgba(36, 32, 31, .10);

    }
    

}

/* =====================================================
   NAVBAR AL HACER SCROLL
===================================================== */

nav.navbar-scroll {
    background: var(--marfil);

    box-shadow:
        0 6px 22px rgba(36, 32, 31, .08);

    transition:
        box-shadow .3s ease;
}
/* =====================================================
   ULTIMA MODIFICACION — TARJETAS DE PRODUCTO
   Tarjetas ligeramente más grandes y alturas uniformes.
===================================================== */

/* Escritorio: 3 tarjetas por fila para darles más presencia */
@media (min-width: 1201px) {
    .productos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }
}

/* Información de las tarjetas */
.producto-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.producto-info h3 {
    margin: 0 0 8px;
    height: 45px;
    color: var(--negro);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -.1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.producto-info p {
    height: 40px;
    min-height: 0;
    margin: 0 0 16px;
    color: var(--gris);
    font-family: Arial, sans-serif;
    font-size: 11.5px;
    line-height: 1.55;
    text-wrap: balance;
    overflow: hidden;
}

.producto-precio {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 92px;
    height: 34px;
    margin: 2px auto 17px;
    padding: 0 10px;
    box-sizing: border-box;

    color: var(--borgona);
    background: #F3E7DC;
    border: 1px solid rgba(122, 58, 63, .28);
    border-radius: 4px;

    font-family: "Lora", serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .3px;
    line-height: 1;
    text-align: center;

    /* Forma de etiqueta */
    clip-path: polygon(
        0 50%,
        10px 0,
        100% 0,
        100% 100%,
        10px 100%
    );
}

.contactar-whatsapp {
    min-height: 47px;
}

/* Tablet y móvil: conservar las dos columnas */
@media (max-width: 1200px) and (min-width: 769px) {
    .productos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .producto-info {
        padding: 13px;
    }

    .producto-info h3 {
        height: 37.7px;
        margin-bottom: 6px;
        font-size: 14.5px;
        line-height: 1.3;
    }

    .producto-info p {
        height: 35px;
        margin-bottom: 10px;
        font-size: 9.5px;
        line-height: 1.45;
    }

    .producto-precio {
        width: 76px;
        height: 29px;
        margin: 1px auto 11px;
        padding: 0 7px;
        font-size: 16.5px;
    }

    .contactar-whatsapp {
        min-height: 43px;
    }
}

@media (max-width: 480px) {
    .producto-info {
        padding: 9px;
    }

    .producto-info h3 {
        height: 33.8px;
        font-size: 13px;
    }

    .producto-info p {
        height: 35px;
        font-size: 11px;
    }

    .producto-precio {
        width: 69px;
        height: 27px;
        margin: 10px auto 15px;
        padding: 0 6px;
        font-size: 15px;
    }
}

/* =====================================================
   FONDOS DEL CATÁLOGO — AJUSTES FINALES RESPONSIVE
   Las imágenes no se repiten y conservan su encuadre.
===================================================== */

/* Ordenador */
@media (min-width: 1101px) {
    .productos::after {
        top: 313px;
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
    }
    .producto-precio .texto-consultar {
    font-size: 15px;
    margin-left: 5px;
}
}

/* Tablet / iPad */
@media (min-width: 769px) and (max-width: 1100px) {
    .productos::after {
        top: 305px;
        background-size: 135% auto;
        background-position: center top;
        background-repeat: no-repeat;
    }
}

/* Móvil */
@media (max-width: 768px) {
    .productos::after {
        top: 295px;
        background-size: 190% auto;
        background-position: center top;
        background-repeat: no-repeat;
    }
    .producto-precio .texto-consultar {
    font-size: 12px;
    margin-left: 5px;
    
}
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .productos::after {
        top: 300px;
        background-size: 225% auto;
        background-position: center top;
        background-repeat: no-repeat;
    }
}


/* =====================================================
   PRECIO — ETIQUETA CENTRADA DEFINITIVA
===================================================== */
.producto .producto-info .producto-precio {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


@media (max-width: 768px) {

    .producto-complemento .producto-info .producto-precio {
        width: 68px;
        height: 28px;
        margin: 1px auto 13px;
        padding: 0 5px;

        font-size: 14px;
        line-height: 1;
        letter-spacing: 0;
    }

}

@media (max-width: 480px) {

    .producto-complemento .producto-info .producto-precio {
        width: 62px;
        height: 26px;
        margin: 8px auto 13px;
        padding: 0 4px;

        font-size: 13px;
        line-height: 1;
        letter-spacing: 0;
    }

}

.cta-final,
.cta-final span,
.cta-final h2,
.cta-final p,
.cta-final a {
    font-family: "Lora", serif;
}

.footer-brand p {
    font-family: "Lora", serif;
}

.footer-column a {
    font-family: "Lora", serif;
}

.footer-bottom {
    font-family: "Lora", serif;
}
