html{
    overflow-x: hidden;
}





/* SECCIÓN HEADER | INICIO */
.seccion-encabezado {
    width: calc(100% - clamp(30px, 10vw, 200px));
    padding: clamp(15px, 5vw, 100px);
    height: calc(100vh - clamp(50px, 10vw, 200px));
    background-image: var(--imagen-encabezado);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: clamp(22px, 2vw, 25px);
    position: relative;
    z-index: 2;
}
.seccion-encabezado::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #00000030;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}
.seccion-encabezado .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.seccion-encabezado .bg-layer.active {
    opacity: 1;
}

.seccion-encabezado .bg-layer:not(.active) {
    opacity: 0;
}
.seccion-encabezado>* {
    position: relative;
    z-index: 1;
}



/* Contenedores | Inicio */
.contenedor-textos-encabezado {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: clamp(12px, 1vw, 15px);
}
.contenedor-botones-encabezado {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: clamp(10px, 1vw, 15px);
    margin-top: clamp(5px, 1.25vw, 15px);
}
.contenedor-puntos-navegacion-encabezado {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: clamp(10px, 1vw, 15px);
    position: absolute;
    left: 0px;
    bottom: 30px;
}
.contenedor-videos-encabezado {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-encabezado {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

.video-encabezado.activo {
    opacity: 1;
}
/* Contenedores | Final */



/* Textos | Inicio */
.h1-encabezado {
    width: 60%;
    text-align: center;
    color: var(--color-texto-blanco);
    font-size: var(--h1-encabezado);
    font-weight: 600;
    font-family: var(--fuente-avenir);
    line-height: var(--interlineado-encabezado);
    animation: h1_transicion 1s linear;
}

.parrafo-encabezado {
    width: 60%;
    text-align: center;
    color: var(--color-texto-blanco);
    font-size: var(--parrafo-encabezado);
    line-height: var(--interlineado-parrafo-encabezado);
    font-weight: 100;
    font-family: var(--fuente-avenir);
    animation: parrafo_transicion 2s linear;
}

/* Textos | 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: var(--texto-botones-generales);
    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 */



.puntos-navegacion-encabezado {
    border-radius: 100%;
    width: 13px;
    height: 13px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    background-color: #cccccc;
}

.puntos-navegacion-encabezado.activo {
    background-color: #ffffff;
    transform: scale(1.25);
}



/* Animaciones | Inicio */
@keyframes h1_transicion {
    0% {
        transform: scale(5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes parrafo_transicion {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes boton_transicion {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Animaciones | Final */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 600px) {
    .seccion-encabezado,
    .seccion-encabezado .bg-layer {
        background-attachment: scroll;
    }



    .boton-encabezado {
        width: 100%;
    }

    .h1-encabezado {
        width: 100%;
    }

    .parrafo-encabezado {
        width: 100%;
        line-height: 17px;
    }

    .contenedor-puntos-navegacion-encabezado {
        bottom: 40px;
    }
}

/* Responsivo | Final*/



/* SECCIÓN HEADER | FINAL */





/* SECCIÓN INTRODUCCIÓN | INICIO */
.seccion-introduccion {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    position: relative;
    z-index: 20;
    transform: translateY(-20px);
    border-radius: 25px 25px 0 0;
    overflow: hidden;
}
.tarjeta-material {
    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);
    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: 6;
}

.tarjeta-material::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.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, calc(-100% - 12px)) scale(1);
}
.tarjeta-titulo {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: .02em;
    font-family: var(--fuente-avenir);
}
.tarjeta-texto {
    display: block;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #333333;
    font-family: var(--fuente-avenir);
}



/* Contenedores | Inicio */
.contenedor-introduccion-informacion {
    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(8px, 1vw, 13px);
    background-color: var(--fondo-azulado);
}
.contenedor-imagen-introduccion {
    width: 50%;
    height: auto;
    display: flex;
    position: relative;
    background: linear-gradient(var(--fondo-azulado), 90%, #ffffff);
}
/* Contenedores | Final */



/* Textos | Inicio */
.h2-introduccion {
    width: 100%;
    text-align: start;
    color: var(--color-texto-gris);
    font-weight: 900;
    font-family: var(--fuente-avenir);
    font-size: var(--h2-generales);
    line-height: clamp(20px, 2.75vw, 35px);
    margin-bottom: clamp(15px, 1.75vw, 25px);
}
.h2-introduccion,
.parrafo-introduccion {
    width: 100%;
    text-align: start;
    color: var(--color-texto-gris);
    font-family: var(--fuente-avenir);
    opacity: 0;
    transform: translateX(-60px);
    transition:
        opacity 0.8s cubic-bezier(.22, 1, .36, 1),
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}
.h2-introduccion {
    font-weight: 900;
    font-size: var(--h2-generales);
    line-height: clamp(20px, 2.75vw, 35px);
    margin-bottom: clamp(15px, 1.75vw, 25px);
}
.animacion-visible {
    opacity: 1;
    transform: translateX(0);
}
.parrafo-introduccion {
    width: 100%;
    text-align: start;
    color: var(--color-texto-gris);
    font-weight: 300;
    font-family: var(--fuente-avenir);
    font-size: var(--parrafo-generales);
    line-height: var(--interlineado-generales);
    transition-delay: .15s;

}
/* Textos | Final */



/* Imágenes | Inicio */
.imagen-introduccion {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition:
        opacity 1s cubic-bezier(.22, 1, .36, 1),
        transform .4s ease;
    will-change: opacity;
}
.imagen-introduccion-visible {
    opacity: 1;
}
/* Imágenes | Final */



/* Botones | Inicio */
.punto-material {
    position: absolute;
    top: var(--top);
    left: var(--left);
    width: 0;
    height: 0;
    z-index: 5;
}
.punto-boton {
    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 {
    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;
}
.punto-onda {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    animation: parpadeo-elegante 2.2s cubic-bezier(.4, 0, .2, 1) infinite;
}
@keyframes parpadeo-elegante {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(2.6); opacity: 0; }
    100% { transform: scale(2.6); opacity: 0; }
}
.punto-boton:hover .punto-nucleo {
    transform: scale(1.25);
}
.punto-boton.activo .punto-nucleo {
    background: #ffffff;
    transform: scale(1.15);
}
/* Botones | Final */



/* Contenedores | Inicio */
.contenedor-introduccion {
    width: 50%;
    height: auto;
    display: flex;
    overflow: hidden;
    background: linear-gradient(var(--fondo-azulado), 90%, #ffffff);
}
/* Contenedores | Final */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 700px) {
    .seccion-introduccion {
        z-index: 3;
        transform: translateY(-25px);
    }



    /* Contenedores | Inicio */
    .contenedor-introduccion-informacion {
        width: 100%;
        border-radius: 25px 25px 0px 0px;
    }

    .contenedor-imagen-introduccion {
        width: calc(100% - 50px);
        padding: 0px 25px;
        height: auto;
        display: flex;
        justify-content: center;
        background-color: var(--fondo-azulado);
    }

    /* Contenedores | Final */



    /* Textos | Inicio */
    .h2-introduccion {
        margin-top: 15px;
        text-align: center;
    }

    .parrafo-introduccion {
        text-align: center;
    }

    /* Textos | Final */



    /* Imágenes | Inicio */
    .imagen-introduccion {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    /* Imágenes | Final */



}

/* Responsivo | Final */



/* SECCIÓN INTRODUCCIÓN | FINAL */





/* SECCIÓN COLECCIONES | INICIO */
.seccion-colecciones {
    width: 100%;
    padding: clamp(25px, 5vw, 50px) 0px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    position: relative;
    z-index: 1;
    gap: clamp(10px, 1.5vw, 16px);
    background-color: #ffffff;
}
.tarjeta-carrusel-colecciones {
    width: clamp(250px, 18vw, 360px);
    min-width: clamp(250px, 18vw, 360px);
    max-width: clamp(250px, 18vw, 360px);
    height: clamp(370px, 26vw, 500px);
    position: relative;
    display: flex;
    background-image: url('https://picsum.photos/id/1015/1920/1080');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-80px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1.2, .36, 1);
    will-change: opacity, transform;
}
.tarjeta-carrusel-colecciones-visible {
    opacity: 1;
    transform: translateY(0);
}
.tarjeta-carrusel-colecciones::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #00000040;
}
.tarjeta-carrusel-colecciones:hover {
    transform: translateY(-25px);
}



/* Contenedores | Inicio */
.contenedor-carrusel-colecciones {
    width: 100%;
    min-width: 0;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    gap: 25px;
    overflow-x: auto;
    padding-top: 25px;
    box-sizing: border-box;
}
.contenedor-imagen-carrusel-colecciones{
    width: auto;
    height: auto;
    display: flex;
    position: absolute;
    bottom: 5px;
    right: 5px;
}
/* Contenedores | Final */



/* Textos | Inicio */
.h2-colecciones {
    width: 100%;
    text-align: center;
    font-family: var(--fuente-avenir);
    color: var(--color-texto-gris);
    font-weight: 900;
    font-family: var(--fuente-avenir);
    font-size: var(--h2-generales);
    line-height: clamp(22px, 2.75vw, 35px);
    margin-bottom: clamp(10px, 1.5vw, 17px);
}
.parrafo-tarjeta-carrusel-colecciones {
    position: absolute;
    bottom: 5px;
    left: 10px;
    color: var(--color-texto-blanco);
    font-family: var(--fuente-avenir);
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 25px);
    text-transform: uppercase;
    width: 90%;
}
/* Textos | Final */



/* Imágenes | Inicio */
.imagen-carrusel-colecciones{
    width: clamp(20px, 1.75vw, 25px);
    cursor: pointer;
    stroke: #ffffff;
}
/* Imágenes | Final */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 700px) {
    .seccion-colecciones {
        transform: translateY(-25px);
    }

    .tarjeta-carrusel-colecciones {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
        height: 275px;
    }



    /* Contenedores | Inicio */
    .contenedor-carrusel-colecciones {
        padding-top: 0px;
        justify-content: center;
        justify-items: center;
    }

    /* Contenedores | Final */
}

/* Responsivo | Final */



/* SECCIÓN COLECCIONES | 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('https://tendenciainterior.com/wp-content/themes/tendenciainterior/src/assets/images/pisos_de_madera.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: var(--h2-generales);
    line-height: clamp(22px, 2.75vw, 35px);
}

.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: var(--texto-botones-generales);
    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;
    }

    /* 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 PIEDRA ETERNA | INICIO */


/* Línea comparadora | Inicio */
.linea-comparacion {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: #ffffff;
    transform: translateX(-50%);
    z-index: 20;
    cursor: ew-resize;
}

.linea-comparacion span {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #999999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.linea-comparacion span::before,
.linea-comparacion span::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
}


.linea-comparacion span::before {
    transform: rotate(-135deg);
    left: 10px;
}


.linea-comparacion span::after {
    transform: rotate(45deg);
    right: 10px;
}

/* Línea comparadora | Final */



/* Botones | Inicio */
.boton-piedra-eterna {
    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: var(--texto-botones-generales);
    text-transform: uppercase;
    cursor: pointer;
    margin-top: clamp(20px, 2.5vw, 30px);
}
.boton-piedra-eterna span {
    margin-left: 10px;
}
.boton-piedra-eterna:hover {
    background-color: #ffffff50;
}
.boton-piedra-eterna:active {
    background-color: #ffffff;
    color: var(--color-texto-gris);
}
/* Botones | Final */



/* Contenedor comparador | Inicio */
.contenedor-imagen-piedra-eterna {
    width: 50%;
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
}
.contenedor-boton-piedra-eterna{
    width: 100%;
    display: flex;
    justify-content: start;
}
.contenedor-imagen-piedra-eterna {
    --ancho-imagen: 100%;
}
/* Contenedor comparador | Final */



/* Imágenes | Inicio */
.imagen-piedra-eterna {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.imagen-comparacion {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
}
.imagen-comparacion .imagen-piedra-eterna {
    width: var(--ancho-imagen);
    max-width: none;
}
.imagen-piedra-eterna:hover {
    transform: none;
}
/* Imágenes | Final */



/* Responsivo | Inicio */
@media screen and (min-width:0px) and (max-width:700px) {
    .contenedor-imagen-piedra-eterna {
        width: calc(100% - 50px);
        padding: 0px 25px;
        height: 350px;
        display: flex;
        justify-content: center;
        background-color: var(--fondo-azulado);
    }
    .linea-comparacion {
        width: 2px;
    }
    .linea-comparacion span {
        width: 35px;
        height: 35px;
    }



    /* Contenedor comparador | Inicio */
    .contenedor-boton-piedra-eterna{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    /* Contenedor comparador | Final */
}


/* Responsivo | Final */



/* SECCIÓN PIEDRA ETERNA | FINAL */





/* SECCIÓN SERVICIOS | INICIO */
.seccion-servicios {
    width: calc(100% - clamp(20px, 10vw, 150px));
    padding: clamp(10px, 5vw, 75px);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(40px, 8vw, 120px);
}



/* Contenedores | Inicio */
.contenedor-informacion-servicios {
    width: calc(42% - clamp(0px, 1vw, 10px));
    display: flex;
    flex-direction: column;
}
.contenedor-servicios-opciones {
    width: calc(58% - clamp(0px, 1vw, 10px));
    display: flex;
    flex-direction: column;
}
.contenedor-boton-servicios{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: end;
    margin-top: 30px;
}
/* Contenedores | Final */



/* Textos | Inicio */
.h2-servicios{
    width: 100%;
    font-family: var(--fuente-avenir);
    font-size: var(--h2-generales);
    line-height: clamp(22px, 2.75vw, 35px);
    font-weight: 900;
    color: var(--color-texto-gris);
    line-height: 1.05;
}
.parrafo-servicios {
    width: 100%;
    margin-top: clamp(20px, 2vw, 35px);
    font-family: var(--fuente-avenir);
    font-size: var(--parrafo-generales);
    line-height: var(--interlineado-generales);
    color: var(--color-texto-gris);
}
/* Textos | Final */



.opcion-servicio {
    width: calc(100% - clamp(0px, 1vw, 5px));
    border-bottom: 1px solid #8b8b8b;
    color: var(--color-texto-gris);
    font-family: var(--fuente-avenir);
    font-size: clamp(18px, 1.75vw, 24px);
    font-weight: 700;
    cursor: pointer;
}

.opcion-servicio:hover {
    padding-left: clamp(8px, 1vw, 15px);
}



/* Botones | Inicio */
.boton-servicios {
    border-radius: clamp(15px, 1.5vw, 20px);
    color: var(--color-texto-gris);
    font-weight: 500;
    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: var(--texto-botones-generales);
    text-transform: uppercase;
    cursor: pointer;
}
.boton-servicios span {
    margin-left: 10px;
}
.boton-servicios:hover {
    background-color: #ffffff50;
}
.boton-servicios:active {
    background-color: #ffffff;
    color: var(--color-texto-gris);
}
/* Botones | Final */



/* Animaciones | Inicio */
.h2-servicios,
.parrafo-servicios,
.opcion-servicio,
.boton-servicios{
    opacity: 0;
    will-change: transform, opacity;
}
.animacion-servicios-visible{
    opacity: 1;
}
.h2-servicios{
    transform: scale(0.88);
    transition:
        transform .9s cubic-bezier(.22,1,.36,1),
        opacity .9s ease;
}
.parrafo-servicios{
    transform: scale(0.94);
    transition:
        transform .85s cubic-bezier(.22,1,.36,1),
        opacity .85s ease;
}
.opcion-servicio:nth-child(1){
    transform: scale(.92);
    transition: transform .8s cubic-bezier(.22,1,.36,1), opacity .8s ease;
}
.opcion-servicio:nth-child(2){
    transform: scale(.89);
    transition: transform .95s cubic-bezier(.22,1,.36,1), opacity .95s ease;
}
.opcion-servicio:nth-child(3){
    transform: scale(.94);
    transition: transform .82s cubic-bezier(.22,1,.36,1), opacity .82s ease;
}
.opcion-servicio:nth-child(4){
    transform: scale(.90);
    transition: transform .88s cubic-bezier(.22,1,.36,1), opacity .88s ease;
}
.boton-servicios{
    transform: translateX(70px);
    transition:
        transform .9s cubic-bezier(.22,1,.36,1),
        opacity .9s ease;
}
.h2-servicios.animacion-servicios-visible,
.parrafo-servicios.animacion-servicios-visible,
.opcion-servicio.animacion-servicios-visible{
    opacity:1;
    transform:scale(1);
}
.boton-servicios.animacion-servicios-visible{
    opacity:1;
    transform:translateX(0);
}

/* Animaciones | Final */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 700px) {
    .seccion-servicios {
        flex-direction: column;
        gap: clamp(30px, 5vw, 40px);
    }
    .opcion-servicio{
        justify-content: center;
        text-align: center;
        margin-top: 15px;
    }



    /* Contenedores | Inicio */
    .contenedor-informacion-servicios,
    .contenedor-servicios-opciones {
        width: 100%;
    }
    .contenedor-boton-servicios{
        justify-content: center;
    }
    /* Contenedores | Final */



    /* Textos | Inicio */
    .h2-servicios{
        text-align: center;
    }
    .parrafo-servicios{
        text-align: center;
    }
    /* Textos | Final */



    /* Botones | Inicio */
    .boton-servicios {
        align-self: flex-start;
    }
    /* Botones | Final */
}
/* Responsivo | Final */



/* SECCIÓN SERVICIOS | FINAL */





/* SECCIÓN COMPARATIVA | INICIO */
.seccion-comparativa{
    width: calc(100% - clamp(20px, 10vw, 150px));
    padding: clamp(10px, 5vw, 75px);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}



/* Textos | Inicio */
.h2-comparativa{
    width: 100%;
    text-align: center;
    font-family: var(--fuente-avenir);
    font-size: var(--h2-generales);
    line-height: clamp(22px, 2.75vw, 35px);
    font-weight: 900;
    color: var(--color-texto-gris);
}
.h3-comparativa{
    text-align: center;
    font-family: var(--fuente-avenir);
    font-size: clamp(22px,2vw,34px);
    font-weight: 800;
    color: var(--color-texto-gris);
}
.h2-comparativa,
.h3-comparativa,
.texto-comparativa,
.linea,
.punto-linea{
    opacity:0;
    will-change:transform,opacity;
}
.h2-comparativa{
    transform:scale(.88);
}
.h3-comparativa{
    transform:scale(.92);
}
.texto-comparativa.izquierda{
    transform:translateX(-60px);
}
.texto-comparativa.derecha{
    transform:translateX(60px);
}
.h2-comparativa{
    transition:
        transform .9s cubic-bezier(.22,1,.36,1),
        opacity .9s ease;
}
.h3-comparativa{
    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .8s ease;
}
.texto-comparativa{
    transition:
        transform .85s cubic-bezier(.22,1,.36,1),
        opacity .85s ease;
}
.texto-comparativa{
    width:100%;
    min-height:clamp(55px,5vw,75px);
    display:flex;
    align-items:center;
    font-family:var(--fuente-avenir);
    font-size:clamp(17px,1.3vw,24px);
    color:var(--color-texto-gris);
    line-height:1.35;
}
.h2-comparativa.comparativa-visible{
    transform:scale(1);
}
.h3-comparativa.comparativa-visible{
    transform:scale(1);
}
.texto-comparativa.izquierda.comparativa-visible{
    transform:translateX(0);
}
.texto-comparativa.derecha.comparativa-visible{
    transform:translateX(0);
}
/* Textos | Final */



/* Wrapper general | Inicio */
.grid-comparativa{
    width:100%;
    display:block;
}
/* Wrapper general | Final */



/* Contenedore | Inicio */
.encabezado-comparativa{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: clamp(45px,5vw,70px);
    border-bottom: 1px solid #25252550;
    padding-bottom: 7px;
}
.contenedor-comparativa{
    width: 100%;
    display: grid;
    grid-template-columns:
        calc(50% - clamp(110px,9vw,150px))
        clamp(220px,18vw,300px)
        calc(50% - clamp(110px,9vw,150px));
    margin-top: clamp(20px,2vw,30px);
}
.iframe-maps{
    position: absolute;
    top: 10px;
    left: 10px;
}
/* Contenedore | Final */



.columna-comparativa-izquierda,
.columna-comparativa-derecha{
    display:flex;
    flex-direction:column;
}

.columna-comparativa-izquierda{
    align-items:flex-end;
}

.columna-comparativa-derecha{
    align-items:flex-start;
}
.columna-comparativa-izquierda .texto-comparativa{
    justify-content:flex-end;
    text-align:right;
    padding-right:clamp(18px,2vw,35px);
}

.columna-comparativa-derecha .texto-comparativa{
    justify-content:flex-start;
    text-align:left;
    padding-left:clamp(18px,2vw,35px);
}
/* LÍNEAS CENTRALES | INICIO */

.linea-central{
    width:100%;
    display:flex;
    flex-direction:column;
}

.fila-linea{
    width:100%;
    min-height:clamp(55px,5vw,75px);
    display:flex;
    align-items:center;
}

.linea{
    height:1px;
    background-color:#bdb5aa;
    flex:1;
}

.linea-izquierda{
    transform-origin:right center;
}

.linea-derecha{
    transform-origin:left center;
}

.punto-linea{
    width:clamp(10px,.8vw,14px);
    height:clamp(10px,.8vw,14px);
    border-radius:50%;
    background-color:#bdb5aa;
    margin:0 clamp(12px,1vw,18px);
    flex-shrink:0;
}

/* LÍNEAS CENTRALES | FINAL */
/* ANIMACIONES | ESTADO INICIAL */

.linea-izquierda{
    transform:scaleX(0);
}

.linea-derecha{
    transform:scaleX(0);
}

.punto-linea{
    transform:scale(0);
}
/* TRANSICIONES */

.linea{
    transition:
        transform .9s cubic-bezier(.22,1,.36,1),
        opacity .6s ease;
}

.punto-linea{
    transition:
        transform .45s cubic-bezier(.34,1.6,.64,1),
        opacity .45s ease;
}
/* ESTADO VISIBLE | INICIO */

.comparativa-visible{
    opacity:1;
}

.linea-izquierda.comparativa-visible{
    transform:scaleX(1);
}

.linea-derecha.comparativa-visible{
    transform:scaleX(1);
}

.punto-linea.comparativa-visible{
    transform:scale(1);
}

/* ESTADO VISIBLE | FINAL */
/* RETRASOS | INICIO */

.fila-linea:nth-child(1) .linea,
.fila-linea:nth-child(1) .punto-linea{
    transition-delay:.10s;
}

.fila-linea:nth-child(2) .linea,
.fila-linea:nth-child(2) .punto-linea{
    transition-delay:.22s;
}

.fila-linea:nth-child(3) .linea,
.fila-linea:nth-child(3) .punto-linea{
    transition-delay:.34s;
}

.columna-comparativa-izquierda .texto-comparativa:nth-child(1){
    transition-delay:.08s;
}

.columna-comparativa-izquierda .texto-comparativa:nth-child(2){
    transition-delay:.18s;
}

.columna-comparativa-izquierda .texto-comparativa:nth-child(3){
    transition-delay:.28s;
}

.columna-comparativa-derecha .texto-comparativa:nth-child(1){
    transition-delay:.08s;
}
.columna-comparativa-derecha .texto-comparativa:nth-child(2){
    transition-delay:.18s;
}
.columna-comparativa-derecha .texto-comparativa:nth-child(3){
    transition-delay:.28s;
}
/* RETRASOS | FINAL */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 1000px){

    /* Contenedores | Inicio */
    .contenedor-comparativa{
        grid-template-columns:
            calc(50% - clamp(70px,8vw,90px))
            clamp(140px,14vw,180px)
            calc(50% - clamp(70px,8vw,90px));
    }
    /* Contenedores | Final */
}

@media screen and (min-width: 0px) and (max-width:800px){

    .grid-comparativa{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .encabezado-comparativa,
    .contenedor-comparativa{
        display:contents;
    }

    .linea-central{
        display:none;
    }

    .h3-propuesta{
        order:1;
        margin-top:clamp(30px,6vw,40px);
    }

    .columna-comparativa-izquierda{
        order:2;
        margin-bottom:clamp(45px,8vw,60px);
    }

    .h3-alternativas{
        order:3;
    }

    .columna-comparativa-derecha{
        order:4;
    }

    /* Timeline vertical | Inicio */
    .columna-comparativa-izquierda,
    .columna-comparativa-derecha{
        align-items:stretch;
        width:100%;
        max-width:420px;
        position:relative;
        padding:0;
    }

    /* Línea vertical que "emerge" del título y recorre los textos */
    .columna-comparativa-izquierda::before,
    .columna-comparativa-derecha::before{
        content:"";
        position:absolute;
        left:5px;
        top:-18px;
        bottom:clamp(24px,4vw,32px);
        width:1px;
        background-color:#bdb5aa;
    }

    .columna-comparativa-izquierda .texto-comparativa,
    .columna-comparativa-derecha .texto-comparativa{
        justify-content:flex-start;
        text-align:left;
        padding:0 0 0 26px;
        position:relative;
    }

    /* Punto sobre la línea, uno por cada texto */
    .columna-comparativa-izquierda .texto-comparativa::before,
    .columna-comparativa-derecha .texto-comparativa::before{
        content:"";
        position:absolute;
        left:0;
        top:50%;
        transform:translateY(-50%);
        width:10px;
        height:10px;
        border-radius:50%;
        background-color:#bdb5aa;
    }
    /* Timeline vertical | Final */

    .texto-comparativa{
        min-height:clamp(50px,8vw,65px);
        font-size:clamp(17px,4vw,22px);
    }

    /* Animación vertical en vez de horizontal, más lógica para un timeline */
    .texto-comparativa.izquierda,
    .texto-comparativa.derecha{
        transform:translateY(24px);
    }

    .texto-comparativa.izquierda.comparativa-visible,
    .texto-comparativa.derecha.comparativa-visible{
        transform:translateY(0);
    }

}

@media screen and (min-width: 0px) and (max-width:600px){

    .columna-comparativa-izquierda,
    .columna-comparativa-derecha{
        max-width:100%;
    }

}

/* RESPONSIVO | FINAL */


/* SECCIÓN COMPARATIVA | FINAL */





/* SECCIÓN PROYECTOS | INICIO */
.seccion-proyectos{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: end;
    background-color: var(--fondo-azulado);
    border-radius: 25px 25px 0px 0px;
    overflow: hidden;
}
.contenedor-proyectos-informacion{
    width: calc(50% - clamp(40px, 8vw, 100px));
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-content: start;
    padding: clamp(20px, 4vw, 50px);
}
.contenedor-proyectos-mapa{
    width: 50%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-content: start;
}
.contenedor-botones-mapa{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
}
.iframe-mapa{
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: 0px 0px 10px #00000025;
}



/* Textos | Inicio */
.h2-proyectos{
    width: 100%;
    text-align: start;
    color: var(--color-texto-gris);
    font-weight: 900;
    font-family: var(--fuente-avenir);
    font-size: var(--h2-generales);
    line-height: clamp(22px, 2.75vw, 35px);
    margin-bottom: clamp(17px, 1.75vw, 22px);
}
.parrafo-proyectos{
    width: 100%;
    text-align: start;
    color: var(--color-texto-gris);
    font-weight: 400;
    font-family: var(--fuente-avenir);
    font-size: var(--parrafo-generales);
    line-height: var(--interlineado-generales);
    margin-bottom: clamp(25px, 2.5vw, 35px);
    border-left: 2px #252525 solid;
    padding-left: 10px;
}
.enlace-proyectos{
    width: 100%;
    text-align: start;
    color: var(--color-texto-gris);
    font-weight: 400;
    font-family: var(--fuente-avenir);
    font-size: var(--parrafo-generales);
    line-height: var(--interlineado-generales);
}
/* Textos | Final */



/* Botones | Inicio */
.boton-proyectos{
    border-radius: clamp(15px, 1.5vw, 20px);
    color: var(--color-texto-negro);
    font-weight: 500;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    border: 1px solid #000000;
    padding: clamp(5px, 1vw, 8px) clamp(11px, 1.5vw, 16px);
    font-weight: 600;
    font-family: var(--fuente-avenir);
    font-size: var(--texto-botones-generales);
    text-transform: uppercase;
    cursor: pointer;
    animation: boton_transicion 2.5s linear;
    margin-top: clamp(20px, 1.5vw, 25px);
}

.boton-proyectos span {
    margin-left: 10px;
}

.boton-proyectos:hover {
    background-color: #ffffff50;
}

.boton-proyectosa:active {
    background-color: #ffffff;
    color: var(--color-texto-gris);
}
/* Botones | FInal */



/* Responsivo | Inicio */
@media screen and (min-width: 0px) and (max-width: 700px) {
    .seccion-proyectos{
        align-content: center;
        justify-content: center;
        background-attachment: scroll;
    }
    .contenedor-proyectos-informacion{
        width: calc(100% - clamp(40px, 8vw, 100px));
        justify-content: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .contenedor-botones-mapa{
        justify-content: center;
    }
    .contenedor-proyectos-mapa{
        width: 100%;
        height: 350px;
    }



    .h2-proyectos{
        text-align: center;
    }
    .parrafo-proyectos{
        text-align: center;
    }
}
/* Responsivo | Final */



/* SECCIÓN PROYECTOS | FINAL */