* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100vw;
}

body {
    background-color: rgb(255, 255, 255);
}

/* header */
header > div {
    background-image: url(../images/logo-fundo.png);
    background-size: contain;
}

header img {
    width: 250px;
    margin: 15px;
}

.logo {
    display: flex;
    justify-content: center;
}

/* home */
.apresentation {
    padding: 15px;
}

.apresentation p {
    font-size: 18px;
    font-weight: 600;
    color: #b19739;
    text-align: center;
}

.services {
    text-align: center;
}

h2 {
    margin: 5px 0 5px 0;
    font-size: 35px;
    background-color: #FCDB9E;
    padding-top: 5px;
    text-align: center;
}

.services ul {
    padding: 15px;
}
.services ul li {
    list-style: none;
    font-size: 18px;
    font-weight: bold;
    color: #b19739;
    padding: 3px;
    
}

/*Carousel*/

@keyframes display {
    0% {
      transform: translateX(200px);
      opacity: 0;
    }
    10% {
      transform: translateX(0);
      opacity: 1;
    }
    20% {
      transform: translateX(0);
      opacity: 1;
    }
    30% {
      transform: translateX(-200px);
      opacity: 0;
    }
    100% {
      transform: translateX(-200px);
      opacity: 0;
    }
  }
  
  .pic-ctn {
    position: relative;
    width: 100vw;
    height: 265px;
    margin-top: 10px;
  }
  
  .pic-ctn > img {
    position: absolute;
    top: 0;
    opacity: 0;
    animation: display 20s infinite;
  }
  
  img:nth-child(2) {
    animation-delay: 5s;
  }
  img:nth-child(3) {
    animation-delay: 10s;
  }
  img:nth-child(4) {
    animation-delay: 15s;
  }


/* footer */
.contato {
    background-color: black;
    position: sticky;
    margin-bottom: 0px;
}

.socials a {
    padding: 10px;
}

.socials img {
    width: 45px;
}

.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 15px;
}


@media only screen and (min-width: 1200px) {
  .pic-ctn {
    display: flex;
    justify-content: center;
    height: 670px;
    width: 99vw;
  }
  
  .pic-ctn > img {
    max-width: 65vw;
  }
  
}