* {
    margin: 2;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    
}
body {
    background-color: rgb(25, 64, 87);
    font-family: orbitron;
}
img {
    max-width: 100%;  /* imagenes responsive */
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
header {
    background-color: rgb(25, 64, 87);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    height: 240px;
}
header img {
    font-size: 10px;
}
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
}
nav a:hover {
    color: black;
}
div {                  /* el menu amburguesa*/
    font-size: 30px;  
    color: white;
    text-align: center;
}

.header {
    background-image: url();
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;  
    display: flex;
    align-items: center;
    min-height: 35vh;  /* alto del header */
    padding: 80px 0 0 0;
}

.menu {
    position: absolute;
    top: -100px;  /* altura */
    right: 0px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between; 

}
.logo {
    color: rgb(174, 9, 9);
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
}
.menu .navbar ul li {  
    position: relative;
    float: left;
}
.menu .navbar ul li a {
    font-size: 20px;
    padding: 10px;
    color: white;
    display: block;
    font-weight: 600;
} 
.menu .navbar ul li a:hover {
    color: black;
}
#menu {
    display: none;
}
.menu-icono {
    width: 25px;
}
.menu label {
    cursor: pointer;
    display: none;

}
.header-txt {
    width: 50%;
    padding-right: 75px;
}
.header-txt h1 {
    color: white;
    font-size: 45px;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 25px;
}
span {
    color: aqua;
}
p {
    font-size: 17px;
    color: black;
}
.btn-1, .btn-2 {
    display: inline-block;
    padding: 8px 35px;
    background-color: rgb(6, 83, 146);
    color: white;
    border-radius: 10px;
    margin: 40px;
}
.btn-1, .btn-2:hover {
    color: black;
}
.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(248, 244, 244, 0.8);
}
.about-txt {
    flex-basis: 50%;
}
h2 {
    font-size: 40px;
    line-height: 1;
    color: black;
    margin-bottom: 25px;
}
.about-txt p {
    color: azure;
}
.products {
    padding: 0 0 100px 0;
    text-align: center;
}
.product img {
    width: 100%;
    height: 400px;
    border-radius:25px 25px 0 0;
    /*margin: 20px; muy buen efecto para ensayar */
}
.products-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px;
}
.product {
    box-shadow: 0 0 20px rgba(188, 234, 235, 0.8);
    border-radius: 25px;
}

.information {
    padding: 130px 0;
    display: flex;
}
.information-img {
    flex-basis: 50%;
    display: flex;
}
.information-img img {
    width: 270px;
    border-radius: 20px;
    margin-left: 30px;
    box-shadow: 0 0 20px rgba(248, 244, 244, 0.8);
}
.information-txt {
    flex-basis: 50%;
}
h2 {
    font-size: 40px;
    line-height: 1;
    color: black;
    margin-bottom: 25px;
}
.information-txt p {
    color: azure;
}

.contact {
    padding: 100px 0;
    text-align: center;
}
form {
    margin-top: 50px;
}
input {
    padding: 15px 25px;
    border: 1px solid orange;
    border-radius: 25px;
    margin-right: 25px;
    outline: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    font-size: 15px;
    text-transform: capitalize;
}
.btn-3 {
    background-color: red;
    color: white;
    cursor: pointer;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer {
    background-color: black;
    padding: 80px 0;  
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
}
.footer-links {
    width: 25%;
    padding: 0 15px;
}
.footer-links h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
    border-bottom: 2px solid greenyellow;
    padding-bottom: 10px;
    display: inline-block;
}
.footer-links ul li a {
    font-size: 18px;
    text-decoration: none;
    color: white;
    display: block;
    margin-bottom: 15px;
    transition: all .3s ease;
}
.footer-links ul li a:hover {
    color:aqua ;
    padding-left: 6px;
}
.social-link a {
    display: inline-block;
    min-height: 40px;
    width: 40px;
    background-color: rgb(39, 45, 157);
    margin: 0 10px 0 10px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    transition: all .5s ease;
}
.social-link a:hover {
    background-color: aqua;
}

@media(max-width:991px) {
    .menu {
        padding: 20px;
    }
    .menu label {
        display: initial;
    }
    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgb(93, 115, 93);
        display: none;
    }
    .menu .navbar ul li a:hover {
        color: black;
    }
    .menu .navbar ul li {
        width: 100%;
    }
    #menu:checked ~ .navbar {
        display: initial;
    }
    header {
        flex-direction: column;
    }
    nav {
        margin-top: 15px;
        align-items: center;
    }
    .header-txt {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    




    .footer-row {
        text-align: center;
    }
    .footer-links {
        width: 100%;
        margin-bottom: 30px;
    }
    
}