/* SECCIÓN ENCABEZADO | INICIO */
.seccion-encabezado{
    width: calc(100% - clamp(30px, 10vw, 200px));
    padding: clamp(15px, 5vw, 100px);
    height: calc(100vh - clamp(50px, 10vw, 200px));
    background-image: url('../images/encabezados/griferia2.webp');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: end;
    gap: clamp(20px, 2vw, 25px);
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.seccion-encabezado::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.seccion-encabezado>* {
    position: relative;
    z-index: 1;
}



/* Contenedores | Inicio */
.contenedor-botones-encabezado {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: clamp(10px, 1vw, 15px);
}
/* Contenedores | Final */



/* Textos | Inicio */
.h1-encabezado{
    width: 100%;
    height: auto;
    text-align: center;
    color: var(--color-texto-blanco);
    font-weight: 800;
    font-family: var(--fuente-avenir);
    font-size: var(--h1-encabezado);
    line-height: var(--interlineado-encabezado);
}
.parrafo-encabezado{
    width: 60%;
    text-align: center;
    color: var(--color-texto-blanco);
    font-size: clamp(12px, 1.5vw, 20px);
    font-weight: 100;
    font-family: var(--fuente-avenir);
    animation: parrafo_transicion 2s linear;
}
/* Textos | Final */



/* Imágenes | Inicio */
/* Imágenes | Final */



/* Botones | Inicio */
.boton-encabezado {
    border-radius: clamp(15px, 1.5vw, 20px);
    color: var(--color-texto-blanco);
    font-weight: 500;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    border: 1px solid #ffffff;
    padding: clamp(5px, 1vw, 8px) clamp(11px, 1.5vw, 16px);
    font-weight: 600;
    font-family: var(--fuente-avenir);
    font-size: clamp(9px, 1vw, 10px);
    text-transform: uppercase;
    cursor: pointer;
    animation: boton_transicion 2.5s linear;
}
.boton-encabezado span {
    margin-left: 10px;
}
.boton-encabezado:hover {
    background-color: #ffffff50;
}
.boton-encabezado:active {
    background-color: #ffffff;
    color: var(--color-texto-gris);
}
/* Botones | Final */



/* Elementos | Inicio */
/* Elementos | Final */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 700px) {
	.seccion-encabezado{
		background-attachment: scroll;
        background-position: center center;
	}



    /* Contenedores | Inicio */
    /* Contenedores | Final */



    /* Textos | Inicio */
    .parrafo-encabezado {
        width: 100%;
    }
    /* Textos | Final */



    /* Imágenes | Inicio */
    /* Imágenes | Final */



    /* Botones | Inicio */
    .boton-encabezado {
        width: 100%;
    }
    /* Botones | Final */



    /* Elementos | Inicio */
    /* Elementos | Final */
}
/* Responsivo | Final */



/* SECCIÓN ENCABEZADO | FINAL */





/* SECCIÓN INFORMATIVA | INICIO */
.seccion-informativa {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    position: relative;
    z-index: 1;
    background-color: var(--fondo-azulado);
}



/* Contenedores | Inicio */
.contenedor-informacion-informativa {
    width: calc(50% - clamp(50px, 10vw, 150px));
    height: auto;
    padding: clamp(25px, 5vw, 75px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: clamp(5px, 1vw, 13px);
    background-color: var(--fondo-azulado);
}
.contenedor-imagen-informativa {
    width: 50%;
    height: auto;
    display: flex;
    overflow: hidden;
    position: relative;
    background-color: var(--fondo-azulado);
}
.contenedor-imagen-informativa::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    pointer-events: none;
    z-index: 1;
}

.contenedor-imagen-informativa > * {
    position: relative;
    z-index: 2;
}
.contenedor-imagen-informativa > img {
    position: relative;
    z-index: 0;
}
/* Contenedores | Final */



/* Textos | Inicio */
.h2-informativa{
    width:100%;
    text-align:start;
    color:var(--color-texto-gris);
    font-weight:900;
    font-family:var(--fuente-avenir);
    font-size:clamp(20px,2.75vw,30px);
    line-height:clamp(20px,2.75vw,30px);
    margin-bottom:clamp(15px,1.75vw,25px);
    opacity:0;
    transform:translateX(-60px);
    filter:blur(6px);
    transition:
        transform 1s cubic-bezier(.22,.61,.36,1),
        opacity .9s ease,
        filter .9s ease;
}
.h2-informativa-visible{
    opacity:1;
    transform:translateX(0);
    filter:blur(0);
}
.parrafo-informativa{
    width:100%;
    text-align:start;
    color:var(--color-texto-gris);
    font-family:var(--fuente-avenir);
    opacity:0;
    transform:translateX(-60px);
    filter:blur(6px);
    transition:
        transform 1s cubic-bezier(.22,.61,.36,1),
        opacity .9s ease,
        filter .9s ease;
    font-size: var(--parrafo-generales);
    line-height: var(--interlineado-generales);
}
.parrafo-informativa-visible{
    opacity:1;
    transform:translateX(0);
    filter:blur(0);
}
.h3-informativa{
    color: var(--color-texto-blanco);
    font-family: var(--fuente-avenir);
    margin-bottom: 10px;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 600;
    width: 90%;
    text-align: start;
}
.parrafo-informativa-imagen{
    color: var(--color-texto-blanco);
    font-family: var(--fuente-avenir);
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 200;
    width: 90%;
    text-align: start;
}
/* Textos | Final */




/* Imágenes | Inicio */
.imagen-informativa{
    width:100%;
    height: auto !important;
    object-fit:cover;
    opacity:0;
    transform:scale(1.18);
    transition:
        transform 1.8s cubic-bezier(.19,1,.22,1),
        opacity 1.2s ease;
    will-change:transform,opacity;
}

.imagen-informativa-visible{
    opacity:1;
    transform:scale(1);
    height: auto !important;
}

.contenedor-imagen-informativa:hover
.imagen-informativa-visible{
    transform:scale(1.08);
}
/* Imágenes | Final */



/* Elementos | Inicio */
/* Elementos | Final */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 700px) {
    .seccion-informativa{
        transform: translateY(-20px);
        padding-bottom: 30px;
        z-index: 3;
    }



    /* Contenedores | Inicio */
    .contenedor-informacion-informativa {
        width: calc(100% - clamp(50px, 10vw, 150px));
        border-radius: 25px 25px 0px 0px;
    }
    .contenedor-imagen-informativa {
        width: 100%;
        justify-content: center;
    }
    .contenedor-imagen-informativa::after {
        background: none;
    }
    /* Contenedores | Final */



    /* Textos | Inicio */
    .h2-informativa{
        text-align: center;
    }
    .parrafo-informativa{
        text-align: center;
    }
    /* Textos | Final */



    /* Imágenes | Inicio */
    .imagen-informativa{
        width: calc(100% - 50px);
        height: auto !important;
        border-radius: 25px;
    }
    .contenedor-imagen-informativa:hover
    .imagen-informativa-visible{
        transform:scale(1);
    }
    /* Imágenes | Final */



    /* Botones | Inicio */
    /* Botones | Final */



    /* Elementos | Inicio */
    /* Elementos | Final */
}
/* Responsivo | Final */



/* SECCIÓN INFORMATIVA | FINAL */





/* SECCIÓN PISOS DE MADERA | INICIO */
.seccion-pisos-de-madera {
    width: calc(100% - clamp(50px, 10vw, 100px));
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-content: center;
    padding: clamp(75px, 15vw, 150px) clamp(25px, 5vw, 50px);
    background-image: url('../images/griferia_para_bano.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.seccion-pisos-de-madera::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #00000040;
}
.seccion-pisos-de-madera>* {
    position: relative;
    z-index: 1;
}



/* Contenedores | Inicio */
.contenedor-informacion-pisos-de-madera {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-content: center;
    gap: clamp(10px, 1.25vw, 15px);
}
/* Contenedores | Final */



/* Textos | Inicio */
.h2-pisos-de-madera {
    width: 100%;
    text-align: start;
    color: var(--color-texto-blanco);
    font-weight: 900;
    font-family: var(--fuente-avenir);
    font-size: clamp(22px, 2.75vw, 30px);
    line-height: clamp(22px, 2.75vw, 30px);
}

.parrafo-pisos-de-madera {
    width: 100%;
    text-align: start;
    color: var(--color-texto-blanco);
    font-weight: 100;
    font-family: var(--fuente-avenir);
    font-size: var(--parrafo-generales);
    line-height: var(--interlineado-generales);
}

/* Textos | Final */



/* Botones | Inicio */
.boton-pisos-de-madera {
    border-radius: clamp(15px, 1.5vw, 20px);
    color: var(--color-texto-blanco);
    font-weight: 500;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    border: 1px solid #ffffff;
    padding: clamp(5px, 1vw, 8px) clamp(11px, 1.5vw, 16px);
    font-weight: 600;
    font-family: var(--fuente-avenir);
    font-size: clamp(9px, 1vw, 10px);
    text-transform: uppercase;
    cursor: pointer;
    animation: boton_transicion 2.5s linear;
    margin-top: clamp(20px, 1.5vw, 25px);
}

.boton-pisos-de-madera span {
    margin-left: 10px;
}

.boton-pisos-de-madera:hover {
    background-color: #ffffff50;
}

.boton-pisos-de-madera:active {
    background-color: #ffffff;
    color: var(--color-texto-gris);
}

/* Botones | Final */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 700px) {
    .seccion-pisos-de-madera {
        background-attachment: scroll;
        transform: translateY(-20px);
    }

    /* Contenedores | Inicio */
    .contenedor-informacion-pisos-de-madera {
        width: 100%;
        justify-content: center;
    }
    /* Contenedores | Final */



    /* Textos | Inicio */
    .h2-pisos-de-madera {
        text-align: center;
    }

    .parrafo-pisos-de-madera {
        text-align: center;
    }

    /* Textos | Final */
}

/* Responsivo | Fina */



/* SECCIÓN PISOS DE MADERA | FINAL */





/* SECCIÓN GRIFERÍA | INICIO */
.section-griferia{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    transform: translateY(-20px);
}
.tarjeta-galeria-griferia{
    width: 150px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: clamp(5px, 0.5vw, 10px);
}



/* Contenedores | Inicio */
.contenedor-imagen-principal-griferia{
    width: 100%;
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
    align-content: center;
    overflow: hidden;
}
.contenedor-galeria-griferia{
    width: auto;
    height: 500px;
    padding: clamp(5px, 1.25vw, 20px);
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    gap: clamp(5px, 1.25vw, 20px);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    scrollbar-width: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.contenedor-galeria-griferia::-webkit-scrollbar {
    display: none;
}
.contenedor-informacion-griferia{
    background-color: #ffffff;
    border-radius: 25px 25px 0px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - clamp(30px, 20vw, 200px));
    height: auto;
    padding: clamp(30px, 5vw, 75px) clamp(15px, 10vw, 100px);
    padding-bottom: clamp(20px, 3vw, 50px);
}
/* Contenedores | Final */



/* Textos | Inicio */
.h2-griferia{
    width: 100%;
    text-align: center;
    color:var(--color-texto-gris);
    font-weight:900;
    font-family:var(--fuente-avenir);
    font-size:clamp(20px,2.75vw,30px);
    line-height:clamp(20px,2.75vw,30px);
    margin-bottom:clamp(15px,1.75vw,25px);
}
.parrafo-griferia{
    width:100%;
    text-align: center;
    color:var(--color-texto-gris);
    font-family:var(--fuente-avenir);
    font-size: var(--parrafo-generales);
    line-height: var(--interlineado-generales);
}
/* Textos | Final */



/* Imágenes | Inicio */
.imagen-principal-griferia{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.imagen-galeria-griferia{
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 1s;
    border-radius: clamp(5px, 0.5vw, 10px);
}
.imagen-galeria-griferia:hover{
    transform: scale(1.2);
}
.imagen-principal-griferia{
    opacity: 1;
    transition: opacity .25s ease;
}


/* Imagen seleccionada | Galería */

.imagen-galeria-griferia{
    cursor: pointer;
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.imagen-galeria-griferia:hover{
    transform: scale(1.03);
}

.galeria-activa-griferia{
    opacity: .6;
}
/* Imágenes | Final */



/* Botones | Inicio */
.boton-tarjetas-catalogo{
    border-radius: clamp(15px, 1.5vw, 20px);
    color: var(--color-texto-gris);
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    border: 1px solid var(--color-texto-gris);
    padding:
        clamp(5px, 1vw, 8px) clamp(11px, 1.5vw, 16px);
    font-weight: 600;
    font-family: var(--fuente-avenir);
    font-size: clamp(9px, 1vw, 10px);
    text-transform: uppercase;
    cursor: pointer;
    margin-top: clamp(20px, 2.5vw, 30px);
}
.boton-tarjetas-catalogo span {
    margin-left: 10px;
}
.boton-tarjetas-catalogo:hover {
    background-color: #ffffff50;
}
.boton-tarjetas-catalogo:active {
    background-color: #000000;
    color: var(--color-texto-blanco);
}
/* Botones | Final */



/* Puntos interactivos | Inicio */
.punto-griferia {
    position: absolute;
    top: var(--top);
    left: var(--left);
    width: 0;
    height: 0;
    z-index: 10;
}
.punto-boton-griferia {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.punto-nucleo-griferia {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
    transition: transform .3s ease, background .3s ease;
    z-index: 2;
}

.punto-onda-griferia {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    animation: parpadeo-griferia 2.2s cubic-bezier(.4, 0, .2, 1) infinite;
}

@keyframes parpadeo-griferia {

    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(2.6);
        opacity: 0;
    }

    100% {
        transform: scale(2.6);
        opacity: 0;
    }

}

.punto-boton-griferia:hover .punto-nucleo-griferia {
    transform: scale(1.25);
}

.punto-boton-griferia.activo .punto-nucleo-griferia {
    background: #ffffff;
    transform: scale(1.15);
}
.tarjeta-material-griferia {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, calc(-100% - 20px)) scale(.92);
    min-width: 200px;
    max-width: 260px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity .45s cubic-bezier(.22, 1, .36, 1),
        transform .45s cubic-bezier(.22, 1, .36, 1);
    z-index: 20;
}
.tarjeta-material-griferia::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.92);
}
.tarjeta-material-griferia.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, calc(-100% - 12px)) scale(1);
}
.tarjeta-titulo-griferia {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: .02em;
    font-family: var(--fuente-avenir);
}
.tarjeta-texto-griferia {
    display: block;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #333333;
    font-family: var(--fuente-avenir);
}
/* Puntos interactivos | Final */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 700px) {
    .section-griferia{
        transform: translateY(-40px);
    }



    .contenedor-imagen-principal-griferia{
        height: auto;
    }
    .tarjeta-material-griferia {
        min-width: 180px;
        max-width: 220px;
    }
    .tarjeta-galeria-griferia{
        width: 75px;
    }



    /* Contenedores | Inicio */
    .contenedor-galeria-griferia{
        width: 100%;
        height: 75px;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        flex-direction: row;
    }
    /* Contenedores | Final */



    /* Textos | Inicio */
    /* Textos | Final */



    /* Imágenes | Inicio */
    .imagen-principal-griferia{
        height: 500px;
    }
    /* Imágenes | Final */



    /* Botones | Inicio */
    /* Botones | Final */



}
/* Responsivo | Final */



/* SECCIÓN GRIFERÍA | FINAL */







/* SECCIÓN CARRUSEL | INICIO */
.seccion-carrusel {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    position: relative;
    z-index: 1;
    margin-top: -40px;
    border-radius: 25px 25px 0px 0px;
    background-color: #ffffff;
    padding-top: 20px;
}



/* Contenedores | Inicio */
.contenedor-informacion-carrusel {
    width: calc(50% - clamp(50px, 10vw, 150px));
    height: auto;
    padding: clamp(25px, 5vw, 75px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: clamp(5px, 1vw, 13px);
}
.contenedor-imagen-carrusel {
    width: 50%;
    height: auto;
    display: flex;
    overflow: hidden;
    justify-content: center;
    position: relative;
}
.contenedor-textos-imagen-carrusel{
    position: absolute;
    left: 30px;
    bottom: 30px;
}
/* Contenedores | Final */



/* Textos | Inicio */
.h2-carrusel{
    width: 90%;
    text-align: center;
    color:var(--color-texto-gris);
    font-weight:900;
    font-family:var(--fuente-avenir);
    font-size:clamp(20px,2.75vw,30px);
    line-height:clamp(20px,2.75vw,30px);
    margin-top:clamp(20px,2vw, 40px);
    margin-bottom:clamp(15px,1.75vw,25px);
}
.parrafo-carrusel{
    width: 90%;
    text-align: center;
    color:var(--color-texto-gris);
    font-family:var(--fuente-avenir);
    font-size: var(--parrafo-generales);
    line-height: var(--interlineado-generales);
    margin-bottom: clamp(10px, 1.5vw, 20px);
}
/* Textos | Final */



/* Imágenes | Inicio */
.imagen-carrusel{
    width: 100%;
    height: 350px;
    object-fit:cover;
}
.contenedor-imagen-carrusel:hover
.imagen-carrusel-visible{
    transform:scale(1.08);
}
/* Imágenes | Final */



/* Elementos | Inicio */
/* Elementos | Final */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 700px) {
    .seccion-carrusel{
        z-index: 3;
    }



    /* Contenedores | Inicio */
    .contenedor-informacion-carrusel {
        width: calc(100% - clamp(50px, 10vw, 150px));
        border-radius: 25px 25px 0px 0px;
    }
    .contenedor-imagen-carrusel {
        width: 100%;
        height: 300px;
        justify-content: center;
        margin-bottom: 25px;
    }
    .contenedor-textos-imagen-carrusel{
        left: 55px;
        bottom: 25px;
    }
    /* Contenedores | Final */



    /* Textos | Inicio */
    .h2-carrusel{
        text-align: center;
    }
    .parrafo-carrusel{
        text-align: center;
        margin-bottom: 20px;
    }
    /* Textos | Final */



    /* Imágenes | Inicio */
    .imagen-carrusel{
        width: calc(100% - 50px);
        height: auto !important;
        border-radius: 25px;
        aspect-ratio: 1/1;
    }
    .contenedor-imagen-carrusel:hover
    .imagen-carrusel-visible{
        transform:scale(1);
    }
    /* Imágenes | Final */



    /* Botones | Inicio */
    /* Botones | Final */



    /* Elementos | Inicio */
    /* Elementos | Final */
}
/* Responsivo | Final */



/* SECCIÓN CARRUSEL | FINAL */





#canvas-agua-global{
    position: absolute;
    top: 76%;
    left: 0;
    width: 100%;
    height: 73% !important;
    pointer-events: none;
    z-index: 10;
}
.contenedor-agua-global{
    position: relative;
}
@media screen and (min-width: 0px) and (max-width: 1000px) {
    #canvas-agua-global{
        display: none;
    }
}