@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "Poppins", sans-serif;
    
}

span{
    color: #2ea1ff;
}

.conteiner {
    max-width: 1200px;
    margin: 0 auto;
}

.cosmo {
    background-image: linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url(imagenes/principal.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.cosmo h1 {
    color: white;
}

.cosmo p {
    color: white;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #FFFDFC;
    font-size: 25px;
    font-weight: 500;

}

.menu .barra ul li {
    position: relative;
    float: left;
}

.menu .barra ul li a {
    font-size: 18px;
    padding: 20px;
    color: #FFFDFC;
    display: block;
    font-weight: 600;
}

.menu .barra ul li a:hover {
    color: #ce967b;
}

#menu {
    display: none;
}

.icono img {
    width: 100px;

}

.menu label {
    cursor: pointer;
    display: none;
}

.cosmo-content {
    text-align: center;
}

.cosmo-content h1 {
    font-size: 75px;
    line-height: 80px;
    color: #F9FAFC;
    text-transform: uppercase;
    margin-bottom: 35px;
    text-align: center;
}

.cosmo-content p {
    font-size: 16px;
    color: #C5C5C5;
    padding: 0 250px;
    margin-bottom: 25px;

}








.about{
    padding: 130px 0;
    display: flex;
}

.about-img{
    flex-basis: 50%;
    display: flex;
}

.about-img img{
    width: 270px;
    border-radius: 20px;
    margin-right: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0,0.2);
}

.about-txt{
    flex-basis: 50px;
}

h2{
    font-size: 40px;
    line-height: 1;
    color: #001739;
    margin-bottom: 25px;
}

.about-txt p{
    color:#444444;
}

.products{
    padding: 0 0 100px 0;
    text-align: center;
}

.products h2{
    margin-bottom: 45px;
}

.products-content{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.product{
    box-shadow: 0 0 20px rgba(0, 0, 0,0.2);
    border-radius: 25px;
}

.product img{
    border-radius: 25px 25px 0 0;
    width: 100;
    height: 250px;
}

.product-txt{
    padding: 10 px 10px 30px 10px;
}

.product-txt h3{
    font-size: 18px;
    color: #373737;
    margin-bottom: 25px;
}

.product-txt p{
    color: #444444;
}

.information{
    padding: 70px 0;
    background-image: url( );
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.info-content{
    display: flex;
}

.information-1{
    flex-basis: 50%;
}

.information-2{
    flex-basis: 50%;
    padding-left: 50px;
}

.information-2 h2 {
    color: #ffffff;
}

.img-content{
    display: flex;
}

.img-content img{
    width: 200px;
    margin-right: 15px;
}

.contact{
    padding: 100px 0;
    text-align: center;
}

form{
    margin-top: 50px;
}

.footer{
    background-color: #373737;
    padding: 50px 0;
}

.footer-content{
    display: flex;
    justify-content: space-between;
}

.link h3{
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
}

.link a {
    font-size: 18px;
    color: #ffffff;
    display: block;
    margin-bottom: 18px;
}

.link a:hover{
    color: #2ea1ff;
}


