*,*:after, *:before {

    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background: #41f321;
    box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.25), inset -2px -2px -2px
        rgba(0, 0, 0, 0.25);
}

/*#contenedor_carga {
    background-color: #050505;
    height: 100%;
    width: 100%;
    position: fixed;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;
}

#carga {
    border: 15px solid #ccc;
    border-top-color: #41f321;
    border-top-style: groove;
    height: 100px;
    width: 100px;
    border-radius: 100%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: girar 1.5s linear infinite;
       -o-animation: girar 1.5s linear infinite;
       animation: girar 1.5s linear infinite;
}

@keyframes girar {
    from { transform: rotate(0deg);}
    to { transform: rotate(360deg);}
}*/

body {  /*El backgroun-image es la imagen del fondo de la web sacada de heropatterns u otro lado*/
    background: black; /*Color del fondo de la web*/
    color: white; /*Color del texto de la web*/
    background-color: #080808;
    
    font-size: 16px; /*Tamaño de fuente*/
    font-family: 'Oswald', sans-serif;

}



a { /*Color de textos enlazados, osea los que tienen links*/
    color: white; 
    text-decoration: none; /*Subrayado del link*/
}

ul { /*Usado para sacar estilos por defecto de las listas*/
    list-style: none;
}

.container { /*Centrar texto*/
    width: 90%;
    margin: auto;
}



/*Navegacion*/


.nav-main { /*Modificacion de todo lo nav*/
    font-size: 17px;
    background: #050505;
    display: flex;
    justify-content: space-between; /*Es para determinar el espacio que utilizara*/
    align-items: center;
    height: 60px;
    padding: 20px ;
    position: fixed;
    width: 100%;
    margin-top: -110px;


}





.titlogo { /*Tamaño del logo*/
    font-size: 30px;
    color: white;
    font-weight: 500;
}



/*Nav Left*/

.nav-main ul {
    display: flex; /*Coloca los menus uno al lado del otro, podemos cambiarlo*/
    padding: 30px;


}

.nav-main ul li {
    padding: 10px; /*Espaciado entre menus superiores*/

}

.nav-main ul li a { /*Realiza una separacion de las lineas hechas con el codigo de abajo de las palabras*/
    padding: 6px;
    color: white;

}

.nav-main ul li a:hover { /*Sirve para colocar una linea debajo de cada palabra del menu cuando pasemos con el click por encima*/
    border-bottom: 2px solid #41f321;
    color: #41f321;

}

.nav-main ul.nav-menu  { /*Acerca el menu de navegacion al icono de la web*/
    right: 1;
    padding: 80px;
    margin: 0;

}

.menu-btn {
    cursor: pointer;
    top: 30px;
    right: 30px;
    z-index: 2;
    font-size: 1.5rem;
    display: none;
    position: fixed;
}

/* SHOW CASE (PARTE PRINCIPAL) */

hr { /*Separa la linea que se encuentra bajo las categorias, de la imagen */
    margin: 10px 0;
}

.showcase {
    width: 100%;
    height: 400px;
    margin-top: 110px;
    background: url('./images/sistadmventas.jpg') no-repeat center center/cover; /*Imagen principal*/
    padding: 2px;
    display: flex; /*Para centrar texto*/
    flex-direction: column; /*Para colocar texto centrado bajo la imagen*/
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;


}

/*btn { /*Con esto modificamos el boton de "Leer mas"*/
    /*cursor: pointer;
    display: inline-block;
    border: 0;
    font-weight: bold;
    padding: 10px 20px;
    background: #262626;
    color: white;
    font-size: 15px;
    border: 1px solid white;
    margin: 10px 0;

}*/


/*.btn:hover { 
   opacity: 0.8; /*Cambia la opacidad del boton de "Leer mas" al posicionar el click encima de el
}*/

.showcase h2 {
    margin-bottom: 20px;
    color: white;
}

.showcase h2 {
    font-size: 45px;
}

.txtUno h2 {
    font-size: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.txtUno p {
    font-size: 23px;
    padding-bottom: 5px;
    font-weight: 300;
}

.txtDos h2 {
    font-size: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.txtDos p {
    font-size: 23px;
    padding-bottom: 5px;
    font-weight: 300;
}

.productoUno img {
    width: 100%;
}

.txtDos .titlista {
    font-size: 30px;
    font-weight: 450;
}

.beneficios {
    font-size: 25px;
}

.beneficios ul {
    padding-bottom: 40px;
    font-size: 23px;
}

.beneficios #puntoUno {
    padding-top: 25px;
}

.beneficios #ultpunto {
    padding-bottom: 50px;
}

#textf {
    padding-bottom: 50px;
}

.btncontact {
    width: 700px;
    padding: 15px;
    height: 100px;
    border: #41f321 2px solid;
    color: #41f321;
    background-color: #070707;
    border-radius: 4px;
    box-shadow: inset #41f321;
    transition: ease-out .3s;
    font-size: 30px;
    outline: none;
}

.btncontact:hover {
    color: #000;
    background-color: #41f321;
    cursor: pointer;
    width: 700px;
    

}

/*.btncontact {
    position: relative;
    padding: 10px 30px;
    border: 2px solid #41f321;
    margin: 10px;
    display: inline-block;
    text-decoration: none;
    color: #41f321;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.5s;
    overflow: hidden;
    font-size: 20px;
}

.btncontact:hover {
    color: #090909;
}

.btncontact span {
    position: fixed;
    display: block;
    width: 0px;
    height: 0px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #41f321;
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.btncontact:hover span {
    width: 0px;
    height: 0px;
}

/*.contactar {
    font-weight: 800;
    border-bottom: white solid 2px;
    cursor: pointer;
    display: inline-block;
    background: #070707;
    color: white;
    font-size: 40px;
    width: 550px;
    border: 1px solid #070707;
    margin: 10px 0;
    border: 3px #070707 solid;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .5);
    animation: pulse 1.5s infinite;
    z-index: inherit;

}
.contactar:hover {
    border-bottom: white solid 2px;
    cursor: pointer;
    display: inline-block;
    background: #070707;
    color: white;
    font-size: 40px;
    width: 550px;
    border: 1px solid #070707;
    margin: 10px 0;
    border: 3px #070707 solid;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .5);
    animation: pulse 1.5s infinite;
    z-index: inherit;
    opacity: 0.8;


}

@keyframes pulse {
    0% {
        transform: scale(.99);
        box-shadow:0 0 0 0 rgba(256, 256, 256, .1);
    }
    70% {
        transform: scale(.99);
        box-shadow: 0 0 0 25px rgba(256, 256, 256, 0);
    }
    100% {
        transform: scale(.99);
        box-shadow: 0 0 0 0 rgba(256, 256, 256,  0);
    }
}*/

.productoUno {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
}

/*#contact {

    text-align: center;
    width: 100%;
    padding-right: 100px;
    font-size: 40px;
}*/

/*.btn-contact {
    cursor: pointer;
    display: inline-block;
    background: white;
    color: white;
    font-size: 40px;
    width: 300px;
    border: 1px solid #070707;
    margin: 10px 0;
    border: 3px #070707 solid;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .5);
    animation: pulse 1.5s infinite;
    z-index: inherit;
}*/

/*@keyframes pulse {
    0% {
        transform: scale(.99);
        box-shadow:0 0 0 0 rgba(256, 256, 256, .1);
    }
    70% {
        transform: scale(.99);
        box-shadow: 0 0 0 25px rgba(256, 256, 256, 0);
    }
    100% {
        transform: scale(.99);
        box-shadow: 0 0 0 0 rgba(256, 256, 256,  0);
    }
}*/





/*Social*/

.social {
    margin: 50px;
}

#facebook {
    color: white;
}

#facebook:hover {
    color: #3b5998;
}

#instagram {
    color: white;
}

#instagram:hover {
    color: #833AB4;
}

.social p {  /*Modifica la palabra "Sigueme en mis redes*/
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    /*margin-top: -510px;*/
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.links a {
    margin: 0 30px;
}

.links a i {
    font-size: 3rem;
    padding: 6px;
}


/*Boton subir*/

.go-top-container {
    position: fixed;
    transition: .2s;
    bottom: 2px;
    right: 2px;
    width: 2px;
    height: 2px;
    z-index: 20;
}

.go-top-button {
    width: -500%;
    height: -10px;
    background-color: #41f321;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.go-top-button i {
    position: absolute;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: black;
    transition: .3s;
}

.show {
    width: 70px;
    height: 70px;
    z-index: 10;
    transition: .5s;

}

.show .go-top-button{
    animation: popup .1s ease-in-out;
    width: 70px;
    height: 70px;
    display: inline-block;
    z-index: 11;
}

.show i {
    transform: translate(-50%, -50%) scale(1);
}




@keyframes popup {
    0%{
        width: 0rem;
        height: 0rem;
    }
    50%{
        width: 70px;
        height: 70px;
    }
    100%{
        width: 50px;
        height: 50px;
    }
}


/*Footer Links*/

.footer-links {
    background: #050505;
    color: white;
    font-size: 12px;
    padding: 35px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

.footer-container ul {
    margin: 0 auto;
}

.footer-container ul li {
    line-height: 2.8;
}

.footer-container ul li:hover {
    border-bottom: white 2px solid;
    padding-right: -100px;
}

footer {
    background: #050505;
    color: white;
    font-size: 15px;
    padding: 20px 0;
    text-align: center;
    padding-bottom: 5px;
    clear: both

}

#franvg {
    color: white;
    padding-bottom: 10px;
}


@media (max-width: 900px) {

    .menu-btn {
        display: block;


    }
    


    .nav-main ul {
        position: absolute;
        width: 90%;
        height: 100vh;
        background: #050505;
        top: 80px;
        right: 0;
        text-align: center;
        display: block;
        transform: translateX(1000px);


     
    }

    .nav-main ul.nav-menu.show {
        right: 0;
        transform: translateX(30px);

    }

    .nav-main ul.nav-menu li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
        padding: 5px;
        font-size: 19px;
    }


    .productoUno img {
        width: 100%;
    }

    /*.btn-contact {
        width: 200px;
        font-size: 30px;
    }*/

    .footer-links .footer-container {
        grid-template-columns:  repeat(2, 1fr);
    }
    


    /*.nav-main ul.nav-menu-right {
        margin-right: 40px;
    }*/
}

@media (max-width: 600px) {
    
    .showcase {
        width: 100%;
    }

    .nav-main ul.nav-menu li{
        display: block;
        margin: 20px 0;
        line-height: 30px;
        padding: 5px;
        font-size: 15px;
    }


    .beneficios ul {
        font-size: 25px;
    }


    .productoUno {
        margin-top: 10px;
    }

    .productoUno img {
        width: 100%;
    }

    /*.btn-contact {
        width: 200px;
        margin-left: 80px;
    }
    #sep {
        padding-top: 30px;
    }*/

    .btncontact {
        text-align: center;
        font-size: 24px;
        font-size: 15px;
    }

    .footer-links .footer-container {
        grid-template-columns:  1fr;
    }


}
