@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

a {
    margin: 0;
    padding: 0;
}

html,
body {
    scroll-behavior: smooth;
}

:root {
    --color-text: #000000;
    --color-background: #ffffff;
    --color-primario: rgb(238, 0, 141);
    --color-secundario: #315dcf;
    --color-contacto-nav: skyblue;
    --color-navbar: rgb(49, 39, 131);
    --color-hoverWhatsapp: #28853c;
}

/* HEADER */
.main-header {
    background-color: var(--color-background);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.02);
    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    box-sizing: border-box;
    transition:
        flex-direction 0.4s ease,
        gap 0.4s ease,
        padding 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    height: clamp(40px, 2.5vw, 52px);
    width: auto;
    object-fit: contain;
    transition:
        height 0.35s ease,
        transform 0.35s ease;
}


.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2.5rem, 4vw, 4.5rem);
    list-style: none;
    padding: 0;
    margin: 0;
    transition: gap 0.35s ease;
}

.nav-menu a {
    color: var(--color-navbar);
    text-decoration: none;
    font-size: clamp(0.85rem, 0.8vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.4rem 0;
    position: relative;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primario);
    transition: width 0.25s ease;
}

.nav-menu a:hover {
    color: var(--color-primario);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-icon {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--color-navbar);
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.menu-icon .icon-lines {
    font-size: 30px;
    line-height: 1;
}

.menu-icon.active {
    transform: rotate(90deg);
    color: var(--color-primario);
}


.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-header.scrolled::after {
    margin-top: 0;
}

.main-header.scrolled .header-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.8rem 2rem;
    gap: 0;
}

.main-header.scrolled .logo img {
    height: clamp(35px, 2vw, 44px);
}

.main-header.scrolled .nav-menu {
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .header-container,
    .main-header.scrolled .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        gap: 0;
    }

    .logo img {
        height: 30px;
    }

    .main-header.scrolled .logo img {
        height: 27px;
    }

    .menu-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1200;
    }


    .navbar {
        position: fixed;
        top: 0;
        right: 0;
        width: 60vw;
        max-width: 80%;
        height: 100vh;
        background-color: var(--color-background);
        border-left: 4px solid var(--color-navbar);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
        padding: 2rem;
        box-sizing: border-box;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        will-change: transform;
        z-index: 1100;
    }

    .navbar.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        display: block;
        font-size: 1.05rem;
        color: var(--color-primario);
    }
}

/* SECCION HERO */
.hero {
    width: 100%;
    padding-top: var(--header-height, 120px);
    background-color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-lona-center {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner {
    width: 100%;
    height: auto; 
    display: block;
    transform: translate3d(0, 0, 0); 
}

@media (max-width: 768px) {

    .hero {
        padding-top: var(--header-height, 120px);
        height: 100vh;
    }

    .hero-lona-center {
        width: 100%;
        height: 100%;
    }

    .hero-lona-center picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .hero-banner {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}

.seccion-nosotros {
    background-color: #f8fafc; 
    padding: 9rem 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.seccion-nosotros::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(238, 0, 141, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(238, 0, 141, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.nosotros-bg-decorativo {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(238, 0, 143, 0.082) 0%, transparent 70%);
    pointer-events: none;
    transform: translateZ(0); 
}

.nosotros-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 7rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nosotros-visor-360 {
    width: 100%;
    max-width: 660px; 
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    background-color: transparent;
    transform: translate3d(0, 0, 0); 
    will-change: transform;
}

.nosotros-visor-360:active {
    cursor: grabbing;
}

.nosotros-visor-360 .cloudimage-360,
.nosotros-visor-360 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.indicador-grid, .indicador-girar {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
}

.indicador-girar i {
    font-size: 1.1rem;
    color: rgba(238, 0, 141, 1);
    margin-right: 0.5rem;
}


.nosotros-tarjeta-texto {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.04);
    border-radius: 24px;
    padding: 5.5rem 4.5rem;
    box-sizing: border-box;
    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.nosotros-tarjeta-texto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(238, 0, 141, 1) 0%, rgba(49, 39, 131, 1) 100%);
}

.tarjeta-diseno-interior {
    position: relative;
    width: 100%;
}

.tarjeta-diseno-interior::before {
    content: "“";
    position: absolute;
    top: -4.5rem;
    left: -2rem;
    font-family: "Georgia", serif;
    font-size: 10rem;
    color: rgba(238, 0, 143, 0.2);
    line-height: 1;
    pointer-events: none;
}

.nosotros-tarjeta-texto .manifiesto-lema {
    color: var(--color-navbar);
    font-size: clamp(1.5rem, 2vw, 2.3rem);
    font-weight: 800;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.5px;
}

.nosotros-tarjeta-texto .lema-resalte {
    background: linear-gradient(90deg, rgba(238, 0, 141, 1), #b9006e);
    -webkit-background-clip: text;
    background-clip: text; 
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.linea-separadora-premium {
    width: 40px;
    height: 3px;
    background-color: #cbd5e1;
    margin: 2.5rem 0;
    border-radius: 2px;
}

.nosotros-tarjeta-texto .manifiesto-cierre {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.nosotros-tarjeta-texto .manifiesto-cierre strong {
    color: var(--color-navbar);
    font-size: clamp(1rem, 1.1vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.nosotros-tarjeta-texto .sub-cierre {
    color: #64748b;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    font-weight: 400;
    display: inline-block;
}

@media (max-width: 1150px) {
    .nosotros-container {
        gap: 4rem;
    }
    .nosotros-tarjeta-texto {
        padding: 4.5rem 3rem;
    }
}

@media (max-width: 991px) {
    .seccion-nosotros {
        padding: 5rem 1.5rem;
    }

    .nosotros-tarjeta-texto {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #ffffff; 
        grid-row: 1; 
        max-width: 650px;
        margin: 0 auto;
        padding: 4rem 3rem;
    }
    
    .nosotros-container {
        grid-template-columns: 1fr; 
        gap: 4rem;
    }
    
    .nosotros-visor-360 {
        grid-row: 2; 
        max-width: 450px;
        box-shadow: none; 
    }
}

@media (max-width: 480px) {
    .seccion-nosotros {
        padding: 4rem 1rem;
    }

    .nosotros-tarjeta-texto {
        padding: 3.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .tarjeta-diseno-interior::before {
        top: -3.5rem;
        left: -0.5rem;
        font-size: 7rem;
    }

    .linea-separadora-premium {
        margin: 1.8rem 0;
    }
}

/* COCINAS */
.seccion-cocinas {
    background-color: var(--color-background);
    padding: 5rem 2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden; 
    
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 600'><path d='M-100,180 C250,20 700,350 1500,220' fill='none' stroke='rgb(49,39,131)' stroke-width='10' opacity='1' stroke-linecap='round'/><path d='M-100,420 C300,580 850,180 1500,380' fill='none' stroke='rgb(238,0,141)' stroke-width='10' opacity='1' stroke-linecap='round'/></svg>");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.titulo-premium-seccion,
.cocinas-bento-grid {
    position: relative;
    z-index: 2; 
}

.titulo-premium-seccion {
    font-size: clamp(1.4rem, 1.8vw + 0.4rem, 2.2rem); 
    font-weight: 800; 
    text-transform: uppercase; 
    color: var(--color-navbar);
    letter-spacing: 2px; 
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 4.5rem; 
    text-align: center;
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 0.4rem;
}

.titulo-premium-seccion span {
    font-size: clamp(0.75rem, 0.8vw + 0.1rem, 0.9rem);
    font-weight: 500;
    letter-spacing: 5px; 
    color: #8e8e93; 
    display: block;
    margin-bottom: 0.2rem;
}

.titulo-premium-seccion::after {
    content: "";
    display: block;
    width: 40px; 
    height: 3px;
    background-color: rgb(238, 0, 141); 
    border-radius: 2px;
    margin-top: 1.2rem;
}

.cocinas-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    align-items: stretch;
}

.cocina-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nombre-cocina {
    font-weight: 700;
    color: var(--color-navbar);
    font-size: 1.1rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-cocina {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: 100%;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}

.wrapper-slider-movil {
    display: none;
}

.miniaturas-cocina {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 65px;
    min-width: 65px;
    flex-shrink: 0;
    order: 1;
}

.miniaturas-cocina img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    padding: 4px;
    box-sizing: border-box;
    will-change: border-color, transform; 
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.miniaturas-cocina img:hover {
    border-color: rgb(238, 0, 141);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(2px);
}

.img-principal-desktop {
    flex-grow: 1;
    width: calc(100% - 85px);
    height: 340px;
    object-fit: contain;
    cursor: pointer;
    order: 2;
    transition: transform 0.3s ease;
}

.puntos-venta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgb(238, 0, 141);
;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.txt-compra {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color:rgb(238, 0, 141, .8);
    margin: 0;
}

.logos-contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.link-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    will-change: transform;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.link-logo:hover {
    transform: scale3d(1.1, 1.1, 1);
}

.link-logo img {
    max-width: 120px;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .cocinas-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .img-principal-desktop { height: 280px; }
}


@media (max-width: 900px) {

    .seccion-cocinas {
        padding: 4rem 1.5rem;
    }

    .cocinas-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cocina-item {
        padding: 1.25rem;
    }

    .galeria-cocina {
        gap: 1rem;
    }

    .img-principal-desktop {
        height: 240px;
    }

    .miniaturas-cocina {
        width: 50px;
        min-width: 50px;
    }

    .miniaturas-cocina img {
        width: 50px;
        height: 50px;
    }

    .logos-contenedor {
        gap: 1rem;
    }

    .link-logo {
        height: 50px;
    }

    .link-logo img {
        max-width: 90px;
    }
}


@media (max-width: 768px) {
    .titulo-premium-seccion {
        letter-spacing: 1.5px;
        margin-bottom: 3rem;
    }
    .titulo-premium-seccion span {
        letter-spacing: 3.5px;
    }

    .seccion-cocinas {
        padding: 3.5rem 1rem;
    }

    .seccion-cocinas h2 {
        margin-bottom: 2rem;
    }

    .cocinas-bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .cocina-item {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .nombre-cocina {
        font-size: 1rem;
        line-height: 1.4;
        min-height: 60px;
        margin-bottom: 1rem;
    }

    .miniaturas-cocina,
    .img-principal-desktop {
        display: none !important;
    }

    .wrapper-slider-movil {
        display: flex;
        position: relative;
        width: 100%;
        height: clamp(220px, 45vw, 320px);
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        overflow: hidden;
        border-radius: 10px;
    }

    .contenedor-carrete-movil {
        width: 100%;
        height: 100%;
        overflow: hidden;
        touch-action: pan-y; 
    }

    .carrete-imagenes {
        display: flex;
        width: 400%;
        height: 100%;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        will-change: transform;
    }

    .carrete-imagenes img {
        display: block;
        width: 25%;
        height: 100%;
        object-fit: contain;
        padding: 15px;
        box-sizing: border-box;
        flex-shrink: 0;
        cursor: pointer;
    }

    .nav-slider {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,.8);
        border: none;
        color: #000;
        font-size: 22px;
        padding: 8px;
        cursor: pointer;
        z-index: 10;
        border-radius: 50%;
        user-select: none;
    }

    .nav-slider.prev {
        left: 5px;
    }

    .nav-slider.next {
        right: 5px;
    }

    .puntos-slider {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .punto {
        width: 8px;
        height: 8px;
        background-color: #2b2b2b;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .punto.activo {
        background-color: rgb(238, 0, 141);
    }

    .puntos-venta {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .logos-contenedor {
        gap: 1rem;
    }

    .link-logo {
        height: 45px;
    }

    .link-logo img {
        max-width: 85px;
    }
}

@media (max-width: 480px) {

    .seccion-cocinas {
        padding: 3rem 0.75rem;
    }

    .cocina-item {
        padding: 1rem;
    }

    .nombre-cocina {
        font-size: 0.95rem;
        min-height: auto;
    }

    .wrapper-slider-movil {
        height: 240px;
    }

    .nav-slider {
        font-size: 18px;
        padding: 6px;
    }

    .txt-compra {
        font-size: 0.75rem;
    }

    .link-logo {
        height: 40px;
    }

    .link-logo img {
        max-width: 75px;
    }
}

/* BANNER */
.banners {
    width: 100%;
    background-color: #f8fafc;
    background-image: 
        linear-gradient(rgba(238, 0, 141, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(238, 0, 141, 0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    padding: 6rem 2rem 0rem 2rem; 
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-historia-container {
    width: 100%;
    max-width: 1400px; 
    min-height: 540px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border-radius: 32px; 
    position: relative;
    z-index: 2;
    background-image: url("../img/FONDO.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.15),
        0 20px 45px rgba(15, 23, 42, 0.08);
    margin: 0 auto;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: box-shadow;
    transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-historia-container::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 0, 141, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.banner-historia-container::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.banner-historia-textos {
    flex: 0 0 65%;
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 4rem 2rem 4rem 5rem;
    box-sizing: border-box;
    z-index: 2;
}

.banner-historia-logo {
    height: clamp(35px, 5vw, 60px);
    width: auto;
    object-fit: contain;
    margin-bottom: 2.5rem;
    display: block;
}

.banner-historia-frase {
    color: #ffffff;
    font-size: clamp(1.4rem, 1.6vw, 2.2rem);
    font-weight: 300;
    line-height: 1.3;
    margin: 0 0 1.8rem 0;
    width: 100%;
    letter-spacing: -0.5px;
}

.banner-historia-frase strong {
    font-family: 'Atom', sans-serif;
    font-weight: 800;
    color: #ffffff;
}

.banner-historia-subfrase {
    color: #e2e8f0;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
    max-width: 90%;
    text-shadow: 0 2px 8px rgba(3, 7, 18, 0.3);
}

.banner-historia-producto {
    flex: 0 0 35%;
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.banner-historia-cocina {
    height: 85%;
    width: auto;
    object-fit: contain;
    display: block;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.35));
}

.banner-historia-container:hover .banner-historia-cocina {
    transform: translate3d(0, -4px, 0) scale3d(1.02, 1.02, 1);
}

@media (max-width: 1024px) {
    .banners {
        padding: 4rem 1.5rem;
    }

    .banner-historia-container {
        flex-direction: column;
        align-items: center;
        max-width: 650px;
        min-height: auto;
    }

    .banner-historia-textos {
        width: 100%;
        flex: none;
        align-items: center;
        text-align: center;
        padding: 4rem 2rem;
    }

    .banner-historia-logo {
        margin: 0 auto 2rem auto;
    }

    .banner-historia-subfrase {
        max-width: 100%;
    }

    .banner-historia-producto {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .banners {
        padding: 3rem 1rem;
    }

    .banner-historia-container {
        border-radius: 24px;
    }

    .banner-historia-textos {
        padding: 3.5rem 1.5rem;
    }
}

/* CONTACTO */
.contact-section {
    background-color: #f8fafc;
    background-image: 
        linear-gradient(to right, rgba(238, 0, 141, 0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(238, 0, 141, 0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    padding: 8rem 2rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    contain: paint;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 70%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(238, 0, 141, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contacto-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contacto-bloque {
    position: relative;
    border-radius: 28px;
    min-height: 350px; 
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid rgba(15, 23, 42, 0.04);
    background-color: #030712;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(15, 23, 42, 0.06);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: box-shadow;
    transition: box-shadow 0.3s ease;
}

.contacto-bloque::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/FONDO.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.contacto-bloque:hover {
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.25),
        0 25px 50px rgba(15, 23, 42, 0.16);
}

.bloque-contenido {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 2;
    position: relative;
}

.flex-centro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bloque-mayorista {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0 4rem 0 0 !important; 
}

.contenedor-chica {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100%; 
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.contacto-imagen-chica {
    height: 100%; 
    width: auto; 
    object-fit: contain;
    object-position: -1px bottom; 
    display: block;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.3s ease;
}

.contacto-bloque:hover .contacto-imagen-chica {
    transform: translate3d(2px, 0, 0);
}

.contenedor-textos {
    width: 50%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    text-align: left;
    z-index: 3;
    box-sizing: border-box;
    padding-left: 2rem; 
    position: relative;
}

.bloque-mayorista .contacto-lema {
    font-family: 'Atom', sans-serif;
    color: #ffffff;
    font-size: clamp(1.2rem, 1.4vw, 1.65rem); 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1.2rem 0;
    line-height: 1.3;
    width: 100%;
}

.link-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1.6rem, 1.7vw, 2.3rem);
    font-weight: 700;
    transform: translate3d(0, 0, 0);
    transition: transform 0.2s ease, color 0.2s ease;
}

.link-whatsapp i {
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    color: #25d366;
}

.link-whatsapp:hover {
    color: var(--color-primario);
    transform: translate3d(3px, 0, 0);
}

.bloque-redes {
    padding: 3rem;
}

.contacto-titulo-redes {
    font-family: 'Atom', sans-serif;
    color: #ffffff;
    font-size: clamp(2.6rem, 3.8vw, 4rem); 
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 0.4rem 0;
    line-height: 1;
}

.contacto-subtitulo-redes {
    color: #e2e8f0;
    font-size: clamp(0.85rem, 1vw, 1.15rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 2.5rem 0;
    opacity: 0.9;
}

.iconos-redes-wrapper {
    display: flex;
    gap: clamp(1.5rem, 3vw, 4rem);
    margin-bottom: 2.2rem;
}

.iconos-redes-wrapper a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    display: inline-block;
    transform: translate3d(0, 0, 0);
    transition: transform 0.2s ease, color 0.2s ease;
}

.iconos-redes-wrapper a:hover {
    transform: translate3d(0, -3px, 0);
    color: var(--color-primario);
}

.contacto-user-tag {
    color: #ffffff;
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    font-weight: 600;
    letter-spacing: 5px;
    opacity: 0.4;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.contacto-bloque:hover .contacto-user-tag {
    opacity: 0.7;
}

@media (max-width: 1300px) and (min-width: 1025px) {
    .contacto-container { 
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 1150px;
    }
    
    .contenedor-chica { 
        width: 40%;
    }
    
    .contenedor-textos { 
        width: 60%;
        padding-right: 1.5rem;
    }

    .bloque-mayorista .contacto-lema {
        font-size: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .contact-section {
        padding: 6rem 1.5rem;
    }

    .contacto-container { 
        grid-template-columns: 1fr;
        max-width: 580px;
        gap: 2.5rem;
    }

    .bloque-mayorista {
        flex-direction: column-reverse;
        justify-content: space-between;
        padding: 0 !important;
        min-height: 380px;
    }

    .contenedor-textos {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 3.5rem 1.5rem 0 1.5rem;
    }

    .bloque-mayorista .contacto-lema {
        text-align: center;
        margin-bottom: 0.8rem;
        font-size: 1.5rem;
    }

    .contenedor-chica {
        position: relative;
        width: 100%;
        height: 220px;
        display: flex;
        align-items: flex-end;
        justify-content: center; 
        margin-top: 0rem;
        left: 50%;
        transform: translate3d(-50%, 0, 0);
    }

    .contacto-imagen-chica {
        height: 100%;
        width: auto;
        object-fit: contain;
        object-position: center bottom; 
        margin: 0 auto; 
        display: block;
        transform: none !important;
    }

    .bloque-redes {
        padding: 4rem 1.5rem;
        min-height: 340px; 
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .contacto-container {
        max-width: 100%;
    }
    
    .contacto-bloque {
        min-height: 360px; 
    }

    .bloque-mayorista {
        min-height: 360px;
    }

    .contenedor-textos {
        padding: 3rem 1.2rem 0 1.2rem;
    }

    .contenedor-chica {
        height: 160px;
    }
}

/* FOOTER */
.footer {
    background-color: #0c1524; 
    color: #ffffff; 
    padding: 5rem 2rem 3rem 2rem; 
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.footer-contenido {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px; 
    margin: 0 auto;
    text-align: left;
}

.footer-col {
    flex: 1 1 300px;
    padding: 1rem 2rem; 
    box-sizing: border-box;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #a0aec0; 
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 0.8rem 0;
}

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--color-primario); 
    text-decoration: none;
    transform: translateX(4px);
}

.footer-col.libro {
    display: flex;
    align-items: flex-start;
}

.footer-col img {
    width: 130px; 
    height: auto;
    padding-top: 0;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.footer-col img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Redes Sociales */
.redes {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.redes a {
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.redes a:hover {
    color: var(--color-primario);
    transform: translateY(-3px);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

@media (max-width: 1024px) {
    .footer {
        padding: 4rem 1.5rem 2rem 1.5rem;
    }

    .footer-contenido {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 100%;
        padding: 0;
    }
    
    .footer-col a:hover {
        transform: none; 
    }

    .footer-col.libro {
        justify-content: center;
    }

    .redes {
        justify-content: center;
    }

    .footer-logo {
        padding: 2rem 0 0 0;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-logo img {
        max-width: 140px;
    }
}

.whatsapp-fixed-group {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1999;
    display: flex;
    flex-direction: column;
    gap: 1rem; 
}

.whatsapp-direct-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--color-primario); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.whatsapp-direct-btn i {
    font-size: 28px;
    color: #ffffff;
}

.whatsapp-direct-btn:hover {
    transform: scale(1.1);
    background-color: #1ebd59;

}

.whatsapp-premium-tooltip {
    position: absolute;
    right: 75px;
    background-color: rgba(12, 21, 36, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.6rem 1.1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px) scale(0.95);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

/* Flecha elegante del letrerito */
.whatsapp-premium-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: rgba(12, 21, 36, 0.9);
}

.whatsapp-direct-btn:hover .whatsapp-premium-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

@media (max-width: 768px) {
    .whatsapp-fixed-group {
        bottom: 25px;
        right: 25px;
        gap: 0.8rem;
    }

    .whatsapp-direct-btn {
        width: 48px;
        height: 48px;
    }

    .whatsapp-direct-btn i {
        font-size: 23px;
    }

    .whatsapp-premium-tooltip {
        display: none !important;
    }
}



body.modal-abierto {
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.controles-superiores {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    box-sizing: border-box;
    z-index: 2100;
}

.zoom-btn-grupo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zoom-btn-grupo button,
.cerrar-modal {
    background: none;
    border: none;
    color: #333333;
    font-size: 28px;
    font-weight: 300;
    font-family: Arial, sans-serif;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    user-select: none;
    transition: color 0.2s ease;
}

.zoom-btn-grupo button:hover,
.cerrar-modal:hover {
    color: #000000;
}

.cerrar-modal {
    font-size: 36px;
}

.modal-contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding-top: 60px;
    box-sizing: border-box;
}

.wrapper-principal {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

#img-modal-principal {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.15s ease;
    will-change: transform, opacity;
    transform: scale(1);
}

.miniaturas-modal {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100%;
    box-sizing: border-box;
}

.miniaturas-modal img {
    height: 60px;
    width: 60px;
    object-fit: contain; /* Cambiado a contain para que las cocinas no se corten */
    background-color: #ffffff;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.5;
    box-sizing: border-box;
}

.miniaturas-modal img.activa {
    border-color: var(--color-primario, #ee008d);
    opacity: 1;
}

/* ==========================================================================
   SOLUCIÓN DEFINITIVA PARA MÓVILES (BLINDADO PARA IPHONE / SAFARI)
   ========================================================================== */
@media (max-width: 768px) {
    /* Forzamos al modal a ocupar el viewport real visual, ignorando los bugs de iOS */
    .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: -webkit-fill-available; /* Truco maestro para Safari en iPhone */
        background-color: #ffffff;
        overflow: hidden;
    }

    /* Controles superiores flotantes compactos */
    .controles-superiores {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 12px 20px;
        z-index: 2100;
        background: linear-gradient(to bottom, rgba(21, 21, 21, 0.05), transparent);
    }

    .zoom-btn-grupo button,
    .cerrar-modal {
        font-size: 22px; 
    }

    .cerrar-modal {
        font-size: 28px;
    }

    /* Rediseñamos el contenedor con posicionamiento absoluto para evitar desfases */
    .modal-contenido {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        display: block; /* Quitamos flexbox para evitar que empuje las cosas hacia abajo */
        box-sizing: border-box;
    }

    /* La imagen principal ocupará una caja fija del 60% del alto total */
    .wrapper-principal {
        position: absolute;
        top: 50px; /* Debajo de los controles superiores */
        left: 0;
        width: 100%;
        height: 55%; /* Espacio estricto controlado */
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    #img-modal-principal {
        max-width: 90%;
        max-height: 100%;
        object-fit: contain;
    }

    /* Las miniaturas las anclamos fijas arriba de la barra de iPhone */
    .miniaturas-modal {
        position: absolute;
        bottom: 25px; /* Levantado estratégicamente para que la barra de iOS no lo tape */
        left: 0;
        width: 100%;
        height: 65px; /* Altura compacta rigurosa */
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        padding: 0 20px;
        margin: 0;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    /* Centrado seguro si hay pocas imágenes */
    .miniaturas-modal::before,
    .miniaturas-modal::after {
        content: '';
        margin: auto;
    }

    .miniaturas-modal::-webkit-scrollbar {
        display: none; /* Invisible */
    }

    /* Miniaturas cuadradas perfectas y equilibradas */
    .miniaturas-modal img {
        width: 50px;
        height: 50px;
        flex-shrink: 0; /* Prohibido que el navegador las aplaste */
        object-fit: contain;
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 2px;
        opacity: 0.4;
    }

    .miniaturas-modal img.activa {
        opacity: 1;
        border: 2px solid var(--color-primario, #ee008d);
    }
}

/* Control estricto si giran el celular */
@media (max-width: 768px) and (orientation: landscape) {
    .wrapper-principal {
        height: 50%;
    }
    .miniaturas-modal {
        bottom: 10px;
        height: 45px;
    }
    .miniaturas-modal img {
        width: 35px;
        height: 35px;
    }
}





/* ==========================================================================
   MODAL POPUP PUBLICITARIO (VERSIÓN ULTRA OPTIMIZADA - 60FPS)
   ========================================================================== */

.modal-publicidad-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8); /* Un toque más oscuro para compensar el blur */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Estado inicial */
    opacity: 0;
    pointer-events: none;
    
    /* OPTIMIZACIÓN 1: Decirle al navegador qué va a cambiar para que prepare la GPU */
    will-change: opacity;
    transition: opacity 0.3s ease-out;
}

/* En computadoras medianamente modernas, activamos un blur ligero */
@media (substring-co-elements: none) {
    .modal-publicidad-overlay {
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
}

.modal-publicidad-overlay.mostrar-popup {
    opacity: 1;
    pointer-events: auto;
}

/* Contenedor de la Tarjeta */
.modal-publicidad-wrapper {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    overflow: visible;

    /* OPTIMIZACIÓN 2: Usamos translate3d para forzar aceleración por hardware en 3D (GPU) */
    transform: translate3d(0, 30px, 0) scale(0.95);
    will-change: transform;
    
    /* Una transición matemática más limpia (ease-out) que no genera saltos extraños de frames */
    transition: transform 0.35s cubic-bezier(0.215, 0.610, 0.355, 1); 
}

/* Animación optimizada al activarse */
.modal-publicidad-overlay.mostrar-popup .modal-publicidad-wrapper {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Contenedor interno e imagen */
.modal-publicidad-contenido {
    width: 100%;
    display: flex;
}

.img-publicidad {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    /* Evita parpadeos raros de imagen en Safari/Chrome al animar */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Botón Cerrar (X) */
.modal-cerrar-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.modal-cerrar-btn i {
    font-size: 1rem;
    font-weight: bold;
}

.modal-cerrar-btn:hover {
    background-color: var(--color-primario);
    color: #ffffff;
    border-color: var(--color-primario);
    transform: translate3d(0, -2px, 0); /* Optimizado */
}

/* --- OPTIMIZACIÓN MÓVIL EXTREMA --- */
@media (max-width: 768px) {
    .modal-publicidad-overlay {
        /* Eliminamos por completo el blur en celulares para asegurar fluidez total */
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .modal-publicidad-wrapper {
        width: 88%;
        /* En móviles quitamos efectos de escala complejos, solo un deslizamiento simple hacia arriba */
        transform: translate3d(0, 40px, 0); 
        transition: transform 0.3s ease-out;
    }
    
    .modal-publicidad-overlay.mostrar-popup .modal-publicidad-wrapper {
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 576px) {
    .modal-cerrar-btn {
        top: -12px;
        right: -12px;
        width: 32px;
        height: 32px;
    }
}

/* .seccion-faq {
    background-color: #ffffff; 
    padding: 6rem 2rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

.titulo-faq {
    text-align: center;
    color: var(--color-navbar);
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.titulo-faq::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--color-primario);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch; 
}

.faq-item {
    background-color: #ffffff;
    padding: 2.2rem 2rem;
    border-radius: 12px;
    border: 1px solid #f1f5f9; 
    border-left: 4px solid var(--color-navbar);
    box-shadow: 0 10px 25px rgba(49, 39, 131, 0.02);
    box-sizing: border-box;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px); 
    border-color: rgba(238, 0, 141, 0.2); 
    box-shadow: 0 20px 35px rgba(49, 39, 131, 0.06); 
}

.faq-item h3 {
    color: var(--color-navbar);
    font-size: clamp(1.05rem, 1.15vw, 1.25rem);
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #475569; 
    font-size: clamp(0.9rem, 0.95vw, 1rem);
    line-height: 1.65;
    margin: 0;
    text-align: left;
} */

/* @media (max-width: 900px) {
    .seccion-faq {
        padding: 4.5rem 1.5rem;
    }

    .titulo-faq {
        margin-bottom: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.8rem 1.5rem; 
    }
} */
/* 
@media (max-width: 480px) {
    .seccion-faq {
        padding: 3.5rem 1rem;
    }

    .faq-item {
        padding: 1.5rem 1.25rem;
        border-radius: 10px;
    }
    
    .faq-item:hover {
        transform: none;
    }
} */