@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: rgb(0, 0, 0);
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

h1,
a,
p,
h2,
h3 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.myButton {
  background-color: #dbdbdb;
  border: none;
  color: #555;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 200px;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 3px 3px rgba(0,0,0,0.2), 
              0 3px 8px rgba(0,0,0,0.1);
}
.button1 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

header {
  position: relative;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.header-content {
  justify-content: space-around;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px 20px;
  color: #212529;
}

label {
  padding: 23px 20px;
  position: absolute;
  cursor: pointer;

}

input[type="checkbox"] {
  position: absolute;
}

label span {
  width: 20px;
  height: 3px;
  display: block;
  background: #4f3e3e;
  position: relative;
}

label span::after,
label span::before {
  content: "";
  position: absolute;
  display: block;
  background: inherit;
  width: inherit;
  height: inherit;
}

label span::before {
  top: 8px;
}

label span::after {
  bottom: 8px;
}

label::before {
  position: absolute;
  content: "";
  width: 58px;
  height: 49px;
  top: 0;
  right: 0;
}

input[type="checkbox"]:focus+label::before {
  box-shadow: 0 0 20px black;
}

ul {
  background: #000000;
}

ul li {
  list-style: none;
  font-size: 18px;
}

ul li button {
  background-color: transparent;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
}

ul li a,
ul li button {
  padding: 0.7rem 1rem;
  text-align: left;
}

.menus {
  position: absolute;
  top: 3.2rem;
  left: 0;
  right: 0;

  /*  hide dropdown on small screens  */
  visibility: hidden;
  /*  smooth transitioning  */
  transform: translateY(-1em);
  transition: transform ease 0.2s;
}

/* toggle main dropdown */

input[type="checkbox"]:checked~nav>ul {
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  padding: 2px 1.5rem;
  height: 0;
  overflow: hidden;
  transition: height ease 0.2s;
}

li:focus-within .dropdown {
  height: 180px;
}

.arrow {
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  vertical-align: middle;
  border-left: 0.15em solid currentColor;
  border-bottom: 0.15em solid currentColor;
  transform: rotate(-45deg);
  margin-left: 0.38em;
  margin-top: -0.25em;
  transition: transform 100ms ease-in-out;
}

li:focus-within>button>.arrow {
  transform: rotate(-225deg);
  margin-top: 4px;
}

/* MEDIA QUERIES  */
@media (min-width: 640px) {

  .header-content {
    display: flex;
  }

  .menus {
    position: static;
    visibility: visible;
    background: rgb(0, 0, 0);
    display: flex;
    transform: initial;
  }

  label,
  input[type="checkbox"] {
    display: none;
  }

  ul li {
    position: relative;
    font-size: 14px;
  }

  ul li a:hover,
  ul li button:hover {
    background-color: #f2f2f2;
  }

  .dropdown {
    position: absolute;
    right: 0;
    left: auto;
    box-shadow: 0 10px 15px -3px rgba(46, 41, 51, 0.08),
      0 4px 6px -2px rgba(71, 63, 79, 0.16);
    z-index: 99;
    min-width: 10rem;
    padding: 0;
    background-color: #fff;
    border-radius: 0 0 0.5rem 0.5rem;
  }

  ul li:hover .dropdown {
    height: 450px;
  }


  ul li:hover>button>.arrow {
    transform: rotate(-225deg);
    margin-top: 4px;
  }
}

.container {
  padding-top: 150px;
  display: flex;
  width: 100vw;
  height: 400px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider {
  position: relative;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(0, 0, 0, 0.377);
  box-shadow: 0px 0px 28px rgb(0, 0, 0);
  width: 50%;
  margin-top: 20px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.slide.current {
  opacity: 1;
}

.slide .content {
  position: absolute;
  bottom: 120px;
  left: -600px;
  opacity: 0;
  width: 400px;
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(0, 0, 0);
  padding: 18px;
}

.slide .content h1 {
  margin-bottom: 10px;
}

.slide.current .content {
  opacity: 1;
  transform: translateX(600px);
  transition: all 0.7s ease-in-out 0.3s;
}

.buttons button#next {
  position: absolute;
  top: 450px;
  right: 250px;
  box-shadow: inset 0px 0px 8px rgb(0, 0, 0);
  background-color: #ffffff57;
}

.buttons button#prev {
  position: absolute;
  top: 450px;
  left: 250px;
  box-shadow: inset 0px 0px 8px rgb(0, 0, 0);
  background-color: #fff8f857;
}

.buttons {
  background-color: transparent;
  color: #000000;
  cursor: pointer;
  padding: 15px 15px;
  border-radius: 50%;
  outline: none;
}

.buttons button:hover {
  background-color: rgb(7, 7, 7);
  color: rgb(0, 0, 0);
}

@media (max-width: 500px) {
  .slide .content {
    bottom: -300px;
    left: 0;
    width: 100%;
  }

  .slide.current .content {
    transform: translateY(-300px);
  }
}



/* Backgorund Images */

.slide:first-child {
  background: url('../../../paginas/grama/30mm/1.jpg') no-repeat center top/cover;
}

.slide:nth-child(2) {
  background: url('../../../paginas/grama/30mm/2.jpg') no-repeat center top/cover;
}

.slide:nth-child(3) {
  background: url('../../../paginas/grama/30mm/3.jpg') no-repeat center top/cover;
}

.slide:nth-child(4) {
  background: url('../../../paginas/grama/30mm/4.jpg') no-repeat center top/cover;
}

.slide:nth-child(5) {
  background: url('../../../paginas/grama/30mm/5.jpg') no-repeat center top/cover;
}

.slide:nth-child(6) {
  background: url('../../../paginas/grama/30mm/6.jpg') no-repeat center center/cover;
}

.logo {
  height: 20%;
  width: 20%;
}

.caixatext {
  display: flex;
  background-color: rgb(105, 91, 51);
  height: auto;
  margin-right: 40%;
  position: relative;
  margin-left: 7%;
  margin-top: -4%;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 30px grey;
}

.title1 {
  font-family: Verdana, Geneva, Arial, sans-serif;
  margin-top: 100px;
  color: rgb(182, 147, 59);
}

.imagem1 {
  border: 5px solid white;
  box-shadow: 0 2px 2px rgb(97, 97, 97);
}

.text {
  display: flex;
  margin-left: 1%;
  flex-direction: column;
}

.text1 {
  display: flex;
  margin-left: 1%;
  flex-direction: column;
  font-size: 20px;
  margin: 2%;
}
.footerbase {
  display: flex;
  flex-direction: row;
  background-color: #24252b;
  width: 100%;
  height: 400px;
  margin-top: 50px;
  justify-content: space-evenly;
}

.footerbase1 {
  display: flex;
  flex-direction: row;
  background-color: #24252b;
  width: 100%;
  height: 360px;
  justify-content: space-evenly;
}
.span1 {
  height: 120px;
  width: 25%;
  margin-top: 50px;
}
  .card2{
    display: flex;
    flex-direction: row;
    justify-content: center;
  }


.span3 {
  height: 120px;
  width: 25%;
  border-top:2px solid #bd8133;
}

.imglink {
  color: white;
  text-decoration: none;
}
.imglink2 {
  text-align: justify;
  color: white;
  text-decoration: none;
}

.imglink1 {
  color: white;
  text-decoration: none;
  font-size: 18px;
  margin: 5px;
  margin-bottom: 15px;
}
.imglink1:hover{
  color: #bd8133;
  transform: scale(1.1);
}

.textlink {
  color: white;
  text-decoration: none;
  font-size: 18px;
  margin: 5px;
}
.textlink:hover{
  transform: scale(1.1);
  color: #bd8133;
}

.divisor {
  padding: 8px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  
  border-top:2px solid #bd8133;
}


.divisor3 {
  padding: 8px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
}
.divisor5 {
  padding: 8px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-around;
  align-items: flex-start;
}
.iconecontato {
  width: 50px;
  height: 50px;
  margin-top: 20px;
}

.iconecontato:hover {
  transform: scale(1.2);
}


.sessao {
  display: flex;
  width: 100%;
  height: 800px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.todos{
  display: flex;
  width: 100%;
  height: 100%;
  background-image: url("../Design\ sem\ nome\ \(4\).png");
  background-position: center;
  background-repeat:space;
  flex-direction: column;
  align-items: center;
  }
.subsessao {
  display: flex;
  background-color: #00000071;
  width: 75%;
  height: 350px;
  margin-top: 100px;
  margin-bottom: 150px;
  flex-direction: column;
}

.h1grama{
  margin-left: 20px;
  margin-top: 20px;
  font-family: 'Times New Roman', Times, serif;
  color: #bd8133;

  font-size: 42px;
}
.h2grama{
  margin-left: 20px;
  font-family: 'Times New Roman', Times, serif;
  color: #bd8133;
  font-size: 25px;
}
.pgrama{
  margin-left: 20px;
  font-family: 'Times New Roman', Times, serif;
  color: #ffffff;
  font-size: 20px;
  text-align: justify;
  width: 95%;
}

/* Estilo do botão */#myButton {
  background-color: #dbdbdb;
  border: none;
  color: #555;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 200px;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 3px 3px rgba(0,0,0,0.2), 
              0 3px 8px rgba(0,0,0,0.1);
}

#myButton:hover {
  background-color: #6e6e6e;
  color: #fff;
}

#myButton:active {
  background-color: #555;
  color: #fff;
  box-shadow: none;
}

/* Estilo do modal */.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 500px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

input[type=number] {
  display: block;
  width: 200px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

#calculate {
  background-color: #555;
  border: none;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 3px 3px rgba(0,0,0,0.2), 
              0 3px 8px rgba(0,0,0,0.1);
}

#calculate:hover {
  background-color: #a8a8a8;
  color: #fff;
}

#calculate:active {
  background-color: #555;
  color: #fff;
  box-shadow: none;
}

#result {
  margin-top: 20px;
  font-size: 18px;
}