*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body{
    overflow-x: hidden;
    min-height: 100vh;
}

:root{
    scroll-behavior: smooth;
    --blanco: #fff;
    --gris: #cecece;
    --negro: #333;
    --negroClaro: #4B4F58;
    --verdeClaro: #61CE70;
    --verdeOscuro: #06752e;
    --verdeMuyOscuro: #14261C;
}

/* Scroll */

swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}
.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}
.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}
.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}
.swiper-scrollbar-cursor-drag{cursor:move}


/* Seccion header */

#headerMenu{
    height: 120px;
    width: 100vw;
    background-color: transparent;
    overflow: hidden;
    position: fixed;
    display: flex;
    align-items: center;
    z-index: 999;
    transition: height 400ms;
    gap: 10px;
    padding-left: 130px;
    padding-right: 130px;
}

.menu-navegacion{
    width: 700px;
    height: 120px;
    position: absolute;
    right: 10%;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15pt;
    list-style: none;
}

.menu-navegacion li{
    position: relative;
    /* Quitar color de seleccion al darle tap */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-weight: 100;
}


.nav-item{
    text-decoration: none;
    color: #eee;
    transition: all 400ms;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    font-weight: 300;
}


.nav-item:hover{
    text-shadow: 0 0 10px #fff;
}

.flechaDerechaSM{
    display: none;
}

.flechaDerechaActiva{
    display: inline;
}

.flechaAbajoDesactiva{
    display: none;
}

.nav-item svg{
    width: 14px;
    transition: all 400ms;
    padding-top: 5px;
}

.nav-item:hover > svg{
    fill: var(--azulClaro);
    transform: translateX(10px);
}


/* Icono menu */

.contenedorToggle{
    position: absolute;
    top: 60px;
    right: 40px;
}

.toggleMenu {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #fff;
    box-shadow: 0 5px 20px #ccc;
    border-radius: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
  }
  .toggleMenu span {
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: 4px;
    background-color: #1863ff;
    transition: 500ms;
  }
  .toggleMenu span:nth-child(1) {
    transform: translateY(-6px);
    width: 10px;
    left: 13px;
  }
  .toggleMenu span:nth-child(2) {
    transform: translateY(6px);
    width: 8px;
    left: 13px;
  }
  
  .toggleMenu.activeM span:nth-child(3) {
    transform: translateX(200%);
  }
  
  .toggleMenu.activeM span:nth-child(1) {
    width: 15px;
    transform: translateY(0) rotate(45deg);
    transition-delay: 0.125s;
  }
  
  .toggleMenu.activeM span:nth-child(2) {
    width: 15px;
    transform: translateY(0) rotate(315deg);
  }


/* Seccion main */

main{
    width: 100vw;
    min-height: 100vh;
}

/* Seccion footer */

footer{
    width: 100vw;
    height: 150px;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    float: bottom;
    bottom: 0px;
    left: 0px;
    padding:20px;
}

.footerBoston{
    background-color: var(--verdeMuyOscuro);
    color: var(--blanco);
}

/* No seleccionable */

.no-seleccionable{
    -moz-user-select: none; 
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

.vinculo:hover{
    transition: all 300ms;
    color: var(--verdeClaro) !important;
    fill: var(--verdeClaro);
}

@media screen and (max-width: 1300px){
    .menu-navegacion{
        font-size: 14pt;
    }

}

@media screen and (max-width: 1270px){

    #headerMenu{
        align-items: flex-start;
        padding-top: 50px;
    }

    /* Boton toggle */

    .toggleMenu{
        display: flex;
    }

    .contenedorToggle{
        right: 20px;
    }


    /* Menu de Navegación */

    .menu-navegacion{
        display: none;
        flex-direction: column;
        gap: 0px;
        height: 80vh;
        width: 100%;
        top: 30vh;
        left: 0;
        padding: 0px;
        transition: transform 1s;
    }

    .menu-navegacion li{
        height: 38px;
        margin-bottom: 25px;
    }

    .nav-item{
        width: 100vw;
        height: 38px;
        font-size: 15pt;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

}

@media screen and (max-width:840px) {
    .titulo{ 
        margin-right: 20%;
    }
}

@media screen and (max-width:680px) {

    .titulo{
        font-size: 18pt;
        text-align: center;
        padding-top: 0;
        width: 80%;
        margin-right: 0;
    }

    
    #headerMenu{
        padding-top: 30px;
        height: 120px;
        padding-bottom: 10px;
        padding-left: 100px;
    }
}


@media screen and (max-width:510px) {

    .contenedorToggle{
        right: 10px;
        top: 20px;
    }

}


@media screen and (max-width:350px) {
    .titulo{
        font-size: 14pt;
    }
}