@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html{
    scroll-behavior: smooth;
    font-smooth: antialiased;
}

h1,h2,h3,h4,h5,h6, span, p, input, textarea, button{
    color: #FFFFFF;
    outline: none;
}
a,
button{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.container{
    width: 100%;
    max-width: 1440px;
}

.hero__section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url('./images/hero_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero__content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img{
    width: 250px;
    margin-top: 4rem;
}

.text-content-hero{
    width: 100%;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.main-title{
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.main-description{
    font-family: 'Roboto', sans-serif;
    width: 550px;
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 2rem;
}

.more-info{
    background-color: #FFFFFF00;
    padding: 1rem 2.5rem;
    color: #FFFFFF;    
    border: 1px solid #FFFFFF;  
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

.solutions{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background-color: #181818;
    padding: 2rem 0;
}

.subtitle{
    padding: 2rem 0;
}

.subtitle h2 {
    color: #FFFFFF;    
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-align: center;

}

.subtitle span {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
}

.subtitle p {
    color: #FFFFFF;    
    font-size: 1.2rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

.products{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.product-item img{
    width: 100%;
    max-width: 850px;
    padding: 1rem;
}

.products-description{
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    padding: 5rem 0;
    text-align: center;
    font-size: 1.2rem;
}

.formulario{
    background-color: #8d8883;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5rem 0;
}

.form__content h2{
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 1.8rem;
    font-size: 2rem;
}

.contact-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.contact-form input, .contact-form textarea, .contact-form button{
    padding: 0.8rem;
    width: 100%;
    max-width: 500px;
    background-color: #FFFFFF00;
    border: 1px solid #FFFFFF;
    resize: none;
    color: #FFFFFF;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 3rem;
    background-color: #181818;
    padding: 5rem 0;
}

.links-sensa p {
    text-align: center;
    font-size: 0.8rem;
    padding: 0.2rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

.socials img{
    width: 30px;
    margin: 0.3rem;
}

.develop{
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
}
.develop a{
    text-decoration: none;
    color: #FFFFFF;
}

@media only screen and (max-width: 585px){
    .main-description{
        width: 100%;
    }
    
    .products{
        flex-direction: column;
    }

    .products-description{
        padding: 0 1.5rem;
    }

    .contact-form{
        padding: 1.5rem;
    }
}