@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root{
    --paddin-contenedor: 100px 0;
    --color-title: #001A49;
}
body{
    font-family: 'Poppins', sans-serif;
}

.contenedor{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    /*background-color: #000;*/
    padding: var(--paddin-contenedor);
}

.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0d0925 0%,#000000a9 100%),url(../image/banner.jpg);
    background-size: cover;
    clip-path: polygon(0 0%,100% 0,100% 80%,50% 95%, 0 80%) ;
    z-index: -1;
}

.hero{
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr ;
    color: #fff;
}

.nav{
    --paddin-contenedor: 0 ;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav_title{
    /*font-weight: 600;*/
    width: 260px;
}
.nav_link{
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 2em;
}

.nav_items{
    list-style: none;
}

.nav_links{
    color:#fff;
    text-decoration: none;
  
}

.nav_links:hover{
    border-bottom: #0d83e4 solid 2px;  

}

.nav_menu{
    margin-left: auto;
    display: none;
    cursor: pointer;
}

.nav_img{
    display: block;
    width: 30px;
}

.nav_close{
    display: var(--show, none);
}

/*hero_container*/

.hero_container{
    max-width: 800px;
    --paddin-contenedor: 0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    text-align: center;
}

.hero_title{
    font-size: 3em;
}

.hero_parrafo{
    margin-bottom: 20px;
}
.cta {
    display: inline-block;
    text-decoration: none;
    /*background-color: #23bb49;*/
    /*background:linear-gradient(50deg, royalblue, crimson,  indianred, purple);*/
    background: linear-gradient(75deg, blue, rgb(189, 4, 81));
    justify-self: center ;
    color: #fff;
    padding: 13px 30px;
    border-radius: 32px;
}

/*seccion About*/
.about{
    text-align: center;
}
.subtitulo{
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 15px;
}

.about_parrafo{
    line-height: 1.7;
    margin-bottom: 20px;
}

.about_articulo{
    padding-top: 60px;
    display: grid;
    margin: 0 auto;
    width: 90%;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
}
.about_iconos{
    display: grid;
    gap: 1em;
    justify-items: center;
    width: 360px;
    overflow: hidden;
    margin: 0 auto;
}
.about_icon{
    width: 40px;
}

/*Syscordwin*/

.syscordwin{
    background-color: #f7e5f5;
    background-image:  radial-gradient(#44bef7 0.5px, transparent 0.5px), radial-gradient(#444cf7 0.5px, #e5e5f7 0.5px);
    background-size: 20px 20px;
    background-position: 0 0,10px 10px;
    overflow: hidden;
    
}
.syscordwin_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: center;
    
} 
.syscordwin_subtitle{
    color: var(--color-title);
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 5px;
}
.syscordwin_parrafo{
    line-height: 1.7;
    margin-bottom: 15px;
}

.syscordwin_foto{
    max-width: 500px;
}
.syscordwin_img{
    width: 100%;
    display: block;
}

/*Desarrollo de software*/
.about_desarrollo{
    padding-top: 50px;
    background: linear-gradient(90deg, rgba(168, 0, 28, 1), #a55ceb)
}
.desarrolla_titulo{
    text-decoration: overline;
}
.soluciones_titulo{
    color: #d3c9c9;
}
