@charset "UTF-8";
/* MOBILE FIRST */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    margin: 0px;
    padding: 0px;
}
body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;

    box-sizing: border-box;

}
:root{
    --font1: Arial, Helvetica, sans-serif;
    --font2: 'Luckiest Guy', cursive;
    --font3: 'Open Sans', sans-serif;
}
header.header-container{
    background-image: url(../images/header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 73% 50%;
    height: 80%;
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: start;
    gap: 20px;
    padding-left: 30px;
}
header.header-container h1{
    font-family: var(--font2);
    color: white;
    font-size: 2.2em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 300px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.247);
}
header.header-container p{
    font-family: var(--font3);
    color: white;
    font-size:14px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 20px;
    max-width: 310px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.247);
}
header.header-container .header-botao{
    display: flex;
    flex-flow: row wrap;
    gap: 14px;
}
header.header-container .header-botao button{
    width: 317px;
    height: 47px;
    border-radius: 30px;
    border: none;
    font-family: var(--font3);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    color: #23272A;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.247);
    transition: all 0.2s ease-in-out;
}
header.header-container .header-botao button:hover{
    background-color: azure 
}
header.header-container .header-botao button#botao2{
    background-color: #23272A;
    color: white;
}
header.header-container .header-botao button#botao2:hover{
    background-color: #1a222e;
    color: white;
}

section.section-container1, section.section-container2, section.section-container3, section.section-container4{
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: start;
    width: 300px;
    gap: 20px;

}
div.main-img{
    min-width: 340px;
    margin: 30px 0px 1px 0px;
    padding-left:10px ;
}
div.main-img img{
    width: 100%;
    
}
section.section-container1 h2, section.section-container2 h2, section.section-container3 h2, section.section-container4 h2{
    font-family: var(--font3);
    font-size: 20px;
    font-weight: 800;
    min-width: 300px;
    padding-left: 20px;
    letter-spacing: 1px;
}
section.section-container1 h2{
    max-width: 300px;
}
section.section-container1 p{
    max-width: 370px;
}
section.section-container1 p, section.section-container2 p, section.section-container3 p, section.section-container4 p{
    font-family: var(--font3);
    font-size: 15px;
    font-weight: 400;
    min-width: 300px;
    padding-left: 20px;
    letter-spacing: 1px;
    line-height: 20px;
}
div.section-container1-text h2, div.section-container2-text h2, div.section-container3-text h2, div.section-container4-text h2{
    padding-bottom: 13px;
}
section.section-container1{
    width: 100%;
    padding-bottom: 50px;
    margin-top: 50px;
}
section.section-container2{
    background-color: rgba(169, 169, 169, 0.089);
    width: 100%;
    padding-bottom: 50px;
    margin-top: 50px;
}
section.section-container2 p{
    max-width: 340px;
}
section.section-container4{
    background-color: rgba(169, 169, 169, 0.089);
    width: 100%;
    padding-bottom: 50px;
    margin-top: 50px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: start;
    gap: 15px;
}
section.section-container4 h2{
    font-family: var(--font2);
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 400px;
    margin-top: 40px;
}
section.section-container4 p{
    max-width: 340px;
}
footer{
    background-color: #23272A;
    width: 100%;
    height: 100px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
footer .footer-img img{
    width: 150px;
}
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}










