@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
:root{
    --header-height: 5rem;
    --normal-font-size: .938rem;
    --color-principal: #151928;
    --color-secundario: #052538;
    --color-detalle: hsl(213, 100%, 52%);
    --color-alterno: #eee9c7;
    --color-claro: #cee1d8;
    --color-titulo: #76EBFD;
    --color-blanco: hsl(0, 0%, 100%);
    --color-tlinea: #f4c9a3;
    --color-landing: #baafc4;
    --color-sitiow: #ebd07f;
    --color-desarrollom: #ff3366;
    --color-morado-obscuro: #635063;
    --color-crm: #23145b;
    --color-erp: #220315;
    --color-app: #36cecc;
    --color-blanco-transparente: hsla(0, 0%, 100%, 0.226);
    --font-regular: 400;
    --font-bold: 600;
    --z-tooltip: 10;
    --z-fixed: 100;
}
@media screen and (width >= 1024px){
    :root{
        --normal-font-size: 1rem;
    }
}
body::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
body::-webkit-scrollbar-track {
    background: var(--color-principal);
    height: 1px;
}  
body::-webkit-scrollbar-thumb {
    background-color: var(--color-detalle);
    border-radius: 20px;
    border: 1px solid var(--color-detalle);
}
a{
    text-decoration: none;
    font-family: "Rubik", sans-serif;
    color: var(--color-blanco);
}
.nav_link,
.dropdown_link{
    font-family: "Rubik", sans-serif;
}
ul{
    list-style-type: none;
}
h1{
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
h2{
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 300;
}
h3{
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 300;
}
p{
    font-family: "Google Sans Flex", sans-serif;
}
body{
    background-color: var(--color-principal);
}
.container{
    max-width: 1128px;
    margin-inline: 1.5rem;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: 1s;
}
.nav{
    height: var(--header-height);
}
.nav_data{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav_logo{
    width: 150px;
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}
.nav_logo img{
    width: 100%;
}
.nav_toggle{
    position: relative;
    width: 32px;
    height: 32px;
}
.nav_burger,
.nav_close{
    color: var(--color-blanco);
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}
.nav_close{
    opacity: 0;
}
@media screen and (width <= 1118px){
    .nav_menu{
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }
    .nav_menu::-webkit-scrollbar{
        width: 0;
    }
    .nav_list{
        background-color: var(--color-principal);
    }
}
.nav_link{
    color: var(--color-blanco);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    font-size: 1rem;
}
.nav_link:hover{
    background-color: var(--color-detalle);
}
.show-menu{
    opacity: 1;
    top: 5rem;
    pointer-events: initial;
}
.show-icon .nav_burger{
    opacity: 0;
    transform: rotate(90deg);
}
.show-icon .nav_close{
    opacity: 1;
    transform: rotate(90deg);
}
@media screen and (width <= 340px){
    .container{
        margin-inline: 1rem;
    }
    .nav_link{
        padding: 1rem;
    }
}
.inicio{
    width: 100%;
    overflow: hidden;
    height: 100vh;
}
.video-background{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.video-background video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inicio-container{
    position: absolute;
    z-index: 1;
    color: var(--color-white);
    padding: 1.5rem;
    top: 55%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.inicio-container .imagen-foto{
    width: 200px;
    max-width: 500px;
}
.inicio-container .imagen-foto img{
    width: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-detalle);
}
.titulo-foto{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.titulo-foto h1{
    color: var(--color-blanco);
}
.titulo-foto h3{
    color: var(--color-detalle);
    margin: 1rem 0;
}
.titulo-foto p{
    color: var(--color-blanco);
    text-align: justify;
}
.titulo-foto p span{
    color: var(--color-detalle);
}
.enlaces-contacto{
    display: flex;
    margin: 2rem 0;
    gap: 1.25rem;
}
.enlaces-contacto .enlaces a{
    font-size: 1.75rem;
    padding: .25rem;
    border-radius: 50%;
    border: 1px solid var(--color-detalle);
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    box-shadow: 0 0 0 2px var(--color-detalle);
    transition: 1s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.enlaces-contacto .enlaces a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background-color: var(--color-detalle);
    transition: 1s;
}
.enlaces-contacto .enlaces a:hover{
    background-color: var(--color-detalle);
}
.enlaces-contacto .enlaces a:hover::before{
    width: 100%;
}

.asesoria{
    width: 100%;
    min-height: 100vh;
    padding: 1.5rem;
    background-image: url(../img/fondo\ asesoria.svg);
    background-position: center;
    background-size: cover;
    background-color: var(--color-principal);
}
.asesoria-container{
    width: 100%;
    max-width: 800px;
    margin: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: transparent;
}
.asesoria-container h1{
    margin: 2rem 0 1.5rem 0;
    color: var(--color-blanco);
    font-size: clamp(1.25rem, 1.25rem + 2vw, 2.5rem);
    font-weight: 400;
}
form{
    /* box-shadow: 0 2px 5px var(--color-detalle); */
    backdrop-filter: blur(20px);
    background: transparent;
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    margin-top: 3rem;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.inputs{
    width: 100%;
}
.inputs .input{
    width: 100%;
}
.inputs .input input{
    width: 100%;
    margin: .5rem 0;
    height: 2rem;
    border: 1px solid var(--color-blanco);
    padding: 0 .5rem;
    outline: none;
    background-color: transparent;
    font-family: "Google Sans Flex", sans-serif;
    font-size: clamp(.8rem, .8rem + 2vw, 1rem);
    font-weight: 300;
    color: var(--color-blanco);
}
.inputs .input input::placeholder{
    color: var(--color-blanco);
}
.textarea{
    width: 100%;
}
.textarea textarea{
    width: 100%;
    margin: .5rem 0;
    border: 1px solid var(--color-blanco);
    padding: .5rem .5rem;
    outline: none;
    background-color: transparent;
    font-family: "Google Sans Flex", sans-serif;
    font-size: clamp(.8rem, .8rem + 2vw, 1.1rem);
    font-weight: 200;
    color: var(--color-blanco);
}
.textarea textarea::placeholder{
    color: var(--color-blanco);
}
.btn-asesoria{
    text-align: center;
    position: relative;
    display: flex;
    width: 240px;
    height: 55px;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-detalle);
    padding: 1rem;
    border-radius: 10px;
    color: var(--color-blanco);
    margin: 1rem 0;
    font-size: 1.25rem;
    transition: 1s;
    overflow: hidden;
    background: transparent;
    z-index: 1;
    font-family: "Google Sans Flex", sans-serif;
}
.btn-asesoria::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-detalle);
    z-index: -1;
    transition: 1s;
}
.btn-asesoria:hover{
    background: var(--color-detalle);
    color: var(--color-blanco);
}
.btn-asesoria:hover::before{
    width: 100%;
}

/* footer */

footer{
    background-color: var(--color-principal);
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 1.5rem;
}
.footer-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.logo-footer{
    width: 180px;
}
.logo-footer img{
    width: 100%;
}
.redes{
    /* width: 100%; */
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
    margin: 1rem 0;
}
.redes a{
    font-size: 2rem;
    color: var(--color-blanco);
}
.redes a:hover{
    color: var(--color-detalle);
}
.ciudad{
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .5rem 0;
}
.ciudad p{
    color: var(--color-blanco);
    font-size: 1.2rem;
    text-align: center;
    align-items: center;
}
.aviso{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .5rem 0;
}
.aviso a{
    color: var(--color-blanco);
    font-size: 1.2rem;
    text-align: center;
}
.aviso a:hover{
    color: var(--color-detalle);
}
.copy{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .5rem 0;
    font-size: 1.2rem;
    color: var(--color-blanco);
    font-family: "Google Sans Flex", sans-serif;
    margin: 1rem 0;
}

@media screen and (width >= 1119px){
    .container{
        margin-inline: auto;
    }
    .nav{
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }
    .nav_toggle{
        display: none;
    }
    .nav_list{
        display: flex;
        height: 100%;
        column-gap: 3rem;
    }
    .nav_link{
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
        background-color: transparent;
        transition: .3s;
        font-size: 1.2rem;
    }
    .nav_link:hover{
        background-color: transparent;
        color: var(--color-detalle);
    }

}


