:root {
  --primary-color: #008037;
  --light-green-color: #76b183;
  --light-color: #f5e9df;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
}

body {
  background-color: var(--light-green-color);
}

.light-bg {
  background-color: var(--light-color);
}

header {
  position: fixed;
  width: 100%;
  background-color: var(--light-color);
  border-bottom: solid 5px var(--primary-color);
  z-index: 999;
}

.cabecalho {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: var(--primary-color);
  height: 110px;
}

.cabecalho a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.4em;
  padding: 10px 15px;
}

.menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 0 10px;
}

.menu a {
  transition: 500ms;
}

.menu a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 5px;
  box-shadow: 10px 5px 5px var(--light-green-color);
}

.logo img {
  height: 75px;
  color: var(--primary-color);
}

.informacao {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.informacao div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

section {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

#contato {
  display: flex;
  align-items: center;
  justify-content: center;
}

#contato .container {
  display: flex;
  color: var(--primary-color);
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.preencher-espaco {
  height: 115px;
  background-color: var(--light-color);
}

.container {
  max-width: 64%;
  min-width: 42%;
  padding: 60px 0 60px 0;
}

.slide-container .container {
  max-width: 1200px;
  padding: 60px 0 60px 0;
}

.container h1 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  line-height: 1.2;
}

.container p {
  font-size: 1.5em;
  font-weight: bold;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  font-size: 1.2em;
}

#quem-somos,#home,footer {
  color: var(--light-color);
  text-align: justify;
}

#quem-somos .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: justify;
  gap: 25px;
}



/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev,.next,.text {font-size: 11px}
}

@media (max-width: 768px) {
  .cabecalho {
    flex-direction: column;
  }

  header {
    padding: 15px 0;
  }

  .cabecalho a {
    padding: 5px 10px;
    margin: 5px 0;
  }

  .container {
    max-width: 80%;
  }

  #contato .container {
    flex-direction: column;
  }

  .informacao {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .informacao div {
    padding: 5px 0;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  #contato .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
}
