/* MENU */

.menu-pagina{
    max-width: 90dvw;
}
.trabajos{
    border: 2px solid var(--verde-ideo);
    color: var(--verde-ideo);
    border-radius:20px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all .1s linear;
}
.trabajos:hover{
    border: 2px solid var(--blanco);
    color: var(--blanco);
    background-color: var(--verde-ideo);
    border-radius:20px;
    font-weight: bold;
    font-size: 1.2rem;
}
.trabajos a{
    text-decoration: none;
    color: unset;
}
.menu-hamburguesa{
    cursor: pointer;
    width: 5rem;
}
.linea{
    width: 3rem;
    height: 0.5rem;
    background-color: var(--verde-ideo);
    border-radius: 25px;
    transition: all 0.1s linear;
    margin: auto;
}
.menu-emergente{
    position: fixed;
    top: 100%;
    left: 0;
    opacity: 0;
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(1rem);
    transition: all 0.5s ease-in-out;
}
.menu-emergente-up{
    top: 0%;
    opacity: 1;
}
.close{
    width: 3rem;
    cursor: pointer;
}
.enlaces-menu a{
    text-decoration: none;
    color: white;
}
.enlacemenu{
    font-family: "NewGroteskSquareSIX";
    font-size: 3rem;
    line-height: 3rem;
    text-align: center;
}
.enlacemenu:hover{
    font-family: "PlayfairDisplay-ExtraBoldItalic";
    color: var(--verde-ideo);
}
.tel{
    font-size: 3rem;
}
.dir, .cp{
    font-size: 1rem;
}
.rrss{
    text-decoration: none;
}



/* MAIN   */
.main{
    max-width: 90dvw;
}
.main .row{
    margin: unset;
}
.soporte{
    height: 5rem;
}

/* CABECERA */
.titulo-row .titulo{
    font-size: 2rem;
    line-height: 0.8rem;
}
.share-icon{
    border-radius: 50%;
    cursor: pointer;
    width: 2.2rem;
    height: 2.2rem;
    background-color: white;
    transition: all 0.2s linear;
}
.share-icon:hover{
    color: white;
    background-color: black;
}
.info-trabajo{
    font-size: 1.2rem;
    border-bottom: 3px solid var(--verde-ideo);
}

/* CONTENIDO */
.contenido .subtitulo{
    font-size: 3rem;
    line-height: 3rem;
}
.contenido .tituloparrafo{
    font-size: 1.5rem;
    line-height: 1.5rem;
}
.contenido .parrafo{
    font-size: 1.2rem;
    line-height: 1.4rem;
}
.contenido img, .contenido video{
    border-radius: 10px;
}
.arrows{
    font-size: 1rem;
    transition: all 0.2s linear;
    cursor: pointer;
}
.prevNextWork svg{
    width: 2rem;
}
svg.rotated{
    transform: rotate(180deg);
}
.arrows:hover{
    color: var(--verde-ideo);
}

/* SIMILARES */
.proyectosSimilares .titulo{
    font-size: 4rem;
    line-height: 4rem;
}
.proyectosSimilares img{
    border-radius: 25px;
}

/******************************************** MODAL DE COMPARTIR */
.share-modal-contenedor{
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
}
.share-modal-contenido div{
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.share-modal-contenido .titulo-modal{
    font-size: 1.5rem;
}
.boton-modal{
    width: 30%;
    border: none;
    background-color: var(--azul-mrgates);
}
.cerrar{
    color: white;
    background-color: var(--verde-ideo);
    max-width: 30%;
    margin: auto;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}
/* RECOMENDADOS */
.recomendado *{
    transition: all 0.2s linear;
}
.recomendado{
    position: relative;
    width: 100;
}
.recomendado .leer-mas{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.recomendado:hover .leer-mas{
    opacity: 1;
}
.recomendado:hover img{
    transition: all 0.2s linear;
    filter: brightness(35%);
}
.recomendado a{
    text-decoration: none;
    font-size: 1.3rem;
}

@media screen and (width > 786px){
    .menu-pagina{
        max-width: 80%;
    }
    .main{
        max-width: 80%;
    }
    .min-w{
        max-width: 80%;
    }
    .titulo-row .titulo{
        font-size: 5rem;
        line-height: 3.8rem;
    }
    
    .enlacemenu{
        font-family: "NewGroteskSquareSIX";
        font-size: 4rem;
        line-height: 4rem;
        text-align: center;
    }
    .enlacemenu:hover{
        font-family: "PlayfairDisplay-ExtraBoldItalic";
        color: var(--verde-ideo);
    }
    .tel{
        font-size: 3rem;
    }
    .dir, .cp{
        font-size: 1.5rem;
    }
    .arrows{
        font-size: 1.5rem;
        transition: all 0.2s linear;
        cursor: pointer;
    }
    
    .contenido img, .contenido video{
        border-radius: 25px;
    }
}

@media screen and (width > 1400px){
    .enlacemenu{
        font-size: 8rem;
        line-height: 8rem;
    }
}
