@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');

body::-webkit-scrollbar {
    width: 10px;               /* width of the entire scrollbar */
  }
  
body::-webkit-scrollbar-track {
    background: rgb(165, 165, 165);        /* color of the tracking area */
  }
  
body::-webkit-scrollbar-thumb {
    background-color: #326d3d;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid rgb(165, 165, 165);  /* creates padding around scroll thumb */
  }

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    width: 8vw;
}

.contato {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
    background-color: #3e6b48;
    border: 1.5px rgba(255, 255, 255, 0) solid;
    margin-right: 1vw;
    border-radius: 20px;
    transition: 0.7s;
}
.contato:hover {
    border: 1.5px #3e6b48 solid;
    color: #3e6b48;
    background-color: transparent;
}

nav {
    height: 40px;
    display: flex;
    align-items: center;
    
}

nav a {
    padding: 5px 10px;
    font-size: 16px;
    text-decoration: none;
    color: #3e6b48;
    margin-left: 1vw;
    margin-right: 1vw;
    border-radius: 20px;
    transition: 0.7s;
}

nav a:hover {
    background-color: #3e6b48;
    color: white;
}

.banner {
    display: flex;
    flex-direction: column;
    margin-top: 20vh;
    align-items: center;
}

.banner h1 {
    text-align: center;
    font-size: 55px;
    margin: 0;
    color: #33573a;
}

#banner-img {
    opacity: 0.5;
    position: absolute;
    width: 100vw;
    transform: translateY(-20vh);
    z-index: -1;

}

.infos {
    margin-top: 27vh;
    display: flex;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
    justify-content: space-between;
}

.info {
    position: relative;
    width: 30vw;
    height: auto;
    transition: 0.8s;
    overflow-y: hidden;
}

.info img {
    position: absolute;
    width: 100%;
    opacity: 0.4;
}

.info:hover {
    rotate: 2deg;
}

#one {
    background-color: #a3d6b2;
}

#two {
    background-color:rgba(112, 156, 79, 0.96);
}

#tree {
    background-color: rgba(18, 46, 54, 0.94);
}

.info h1 {
    position: relative;
    z-index: 1;
    margin-left: 0.5vw;
    color: rgb(245, 255, 241);
}

.info p {
    position: relative;
    z-index: 1;
    margin-left: 0.5vw;
    color: white;
}

.o-que-fazemos {
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.o-que-fazemos p{
    width: 60vw;
    font-size: 13px;
    text-align: center;
}

.o-que-fazemos h1{
    width: 60vw;
    font-size: 40px;
    text-align: center;
    color: #33573a;
}

.o-que-fazemos h3 {
    margin: 0;
    font-family: 'Caveat', cursive;
    color: #326d3d;
}

#center {
    text-align: center;
    color: rgba(18, 46, 54, 0.94);
}

.images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.images img {
    width: 15vw;
    height: 15vw;
    opacity: 0.8;
    transition: 0.8s;
    margin-left: 1.3vw;
    margin-bottom: 1vw;
}


.images img:hover {
    opacity: 1;
    scale: 1.1;
}

video {
    width: 15vw;
    height: 20vw;
    transition: 0.8s;
    margin-left: 1.3vw;
    margin-bottom: 1vw;
}

.ficha {
    position: relative;
    margin-left: 30vw;
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-bottom: 10vh;
    overflow-x: hidden;
    overflow-y: hidden;
}

.ficha img {
    position: absolute;
    right: 0;
    top: 100px;
    rotate: -40deg;
    width: 40vw;
    transform: translateX(200px);
}

.ficha p {
    margin-left: 1.5vw;
    color: rgba(18, 46, 54, 0.94);
}

.ficha div div {
    display: flex;
}

.quem {
    display: none;
    width: 40vw;
    transition: 0.8s;
}

.seta {
    transition: 0.5s;
}

.ficha div:hover .seta{
    rotate: 90deg;
}

.ficha div:hover .quem{
    display: block;
}

.linha {
    width: 40vw;
    height: 1px;
    background-color: #33573a;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #33573a;
}

footer h1 {
    color: white;
    text-align: center;
}

footer p {
    color: white;
    text-align: center;
    width: 70vw;
}

.xdiv {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 35%;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #326d3d;
    border-radius: 5px;
    color: #fff;
    z-index: 3;
}

.tela {
    display: none;
    position: absolute;
    background-color: #ffffffa1;
    width: 100vw;
    height: 90vh;
    z-index: 1;
}

.instagram {
    margin-left: 2vw;
    width: 4vw;
    height: 4vw;
    transition: 0.7s;
}

.instagram:hover {
    width: 5vw;
    height: 5vw;
}