*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 2rem;
    text-decoration: none;
    list-style-type: none;
    scroll-behavior: smooth;
    font-family: 'Jost', sans-serif;
    transition:0.3s;
}

body, html {
    height: 100%;
}

@keyframes animate{
    0%{
        transform: translate(0, -4px);
        opacity: 0%;
    }
    100%{
        transform: translate(0, 1);
        opacity:100%;
    }

}

h2{ margin: 4rem 0 !important;
}

hr{
    margin-top: 40px;
    margin-bottom: 40px;
    border: 3pt solid white;
}

#menu-icon{
    font-size: 2em;
    z-index: 1100;
    display: none;
}


header{
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(58, 58, 58);
    box-shadow: 0 4px 41px rgb(14 55 54 / 14%);
    padding: 15px;
}

.head-link{
    color:white;
    font-weight: 400;
    font-size: 1.25em;
    text-decoration:none;
}

.head-link:hover{
    color:rgb(215, 215, 215);
}
.thanks{
    text-align:center;
    color:#0D6EFD;
    margin-bottom:0 !important;
}
.error{
    text-align:center;
    color:#F00;
    margin-bottom:0 !important;
}
.logo{
    padding:10px;
    text-decoration: none;
    font-size:1.25em; 
    font-weight:500;
    color:white;
}

.logo:hover{
    color:rgb(215, 215, 215);
}

.navbar{
    margin:0;
    display: flex;
}

.navbar a{
    font-size: 1rem;
    padding: 11px 20px;
    color:rgb(225, 225, 225);
    text-decoration:none;

}

.navbar a:hover {
    padding: 11px 20px;
    color:grey;
}

.hero-image {
    background-image: linear-gradient(rgba(17, 48, 108, 0.5), rgba(24, 64, 145, 0.5)), url("../images/brillo-par.jpg");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
.hero-text {
    text-align: center;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-text h1{
    font-size: 4em;
    margin-bottom: 5px;
}

.hero-text p{
    font-size: 2em;
}

.home{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: rgb(248, 246, 245);
}

.home-container{
    margin: 0 auto;
    width: 85%;
    max-width: 1920px;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 20px;
}

/*form*/

.form-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#383838;
}

.form-container form{
    width: 90%;
    max-width: 1200px;
    padding: 50px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

::placeholder{
    font-size: .70em;
}

.photo-example{
    width:50%;
    margin-top:40px;
    margin-bottom:40px;
    padding:20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    text-align:center;
    font-size:.8em;
}

.photo-example img{
    max-width:250px;
    margin:20px;
}


.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #231f20c4;
    color: white;
}

.footer-top{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    vertical-align: center;
    gap: 1rem;
}

.copyright{
    padding: 20px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.863);
}

@media (min-width: 0px) and (max-width: 1280px) {
    header{
        padding: 15px;
    }

    #menu-icon{
        display: initial;
        cursor: pointer;
    }

    header .navbar{
        width:100%;
        overflow-x: none;
        position: absolute;
        right:0;
        left:100%;
        top:0;
        display: block;
        background: rgb(58, 58, 58);
        box-shadow: 0 4px 4px rgb(14, 55, 54, 0.1);
        border-top: 2px solid rgb(58, 58, 58);
        text-align: left;
    }

    .navbar a{
        font-size: 1.25rem;
        padding: 2rem;
        display: block
    }

    .navbar a:hover {
        padding: 2rem;
        color:grey;
    }
 
    .navbar.active{
        left:0;
    }
    
    .home-container{
        display: block;
        margin: 0 auto;
        text-align: center;
        margin-top: 4rem;
        margin-bottom: 4rem;
        padding: 0;
    }

    .home-container{
        width: 100%;
        padding: 0px;
    }

    .form-container form{
        width: 95%;
        padding:30px;
        margin:0 auto;
        padding: 0px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .product-info-container{
        display: block;
    }

    .photo-example{
        width:100%;
        margin:0 auto;
        padding:10px;
        box-shadow:none;
    }

}