* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  /* justify-content: center;
  justify-items: center;
  align-items: center; */
  /* max-width: 1024px; */
  background-color: var('body');
}

body {
  font-family: 'Roboto', sans-serif;
  background-image: linear-gradient(90deg, #ffe59d, white, #00ff0a 150%);
  /* background-image: linear-gradient(90deg, #28782B -40%, white,  pink, white, #28782B 140%); */
  /* background-color: white; */
  max-width: 64rem;
  margin: 0 auto;
  overflow:scroll;
  overflow-x: hidden;

  max-width: 1024px;

  /* border: 0.1em red solid; */
}

:root {
  font-size: 62,5%;
}

header {
  display:flex;
  flex-direction: column;
  justify-content: space-around;
  align-items:center;

  /* border: 0.1em red solid; */
  margin: 1rem;

  position: relative;
}

.logo {
  position: fixed;
  top: 0;
  z-index: 9999;
}

#bereallogo {
  border: 0.2rem #000000 solid;
  border-radius: 100%;
  filter: drop-shadow(0rem 0rem 0.1rem #28782B);
  margin: 0.5rem 0 1rem 0;
  width: 15vw;
  max-width: 100px;
}

  #bereallogo:hover {
  background-color: white;
  border: 0.1em solid white;
}

.tittle {
    /* filter: drop-shadow(0em 0em 0.01em #993c4c); */
    font-family: 'Nunito', sans-serif;
    font-weight: bolder;
    text-align: center;
    color: rgb(0, 0, 0);
    align-items: center;
    padding: 0 0 0.5rem 0;
    position: absolute;
    font-size: 4vw;

    /* border: 0.1em red solid; */
}

#tittle:hover {
  color: #ffffff;
  cursor: default;
}

#topo {
  height: 100%;
  width: 100%;
  z-index: 9;
}

.menu {
  position: relative;
  justify-content: center;
  align-items: center;
  bottom: 0;
  margin: 0 1rem 0;
  padding: 2rem;

  /* border: 0.1em red solid; */
}


ul {
  font-family: 'Nunito', sans-serif;
  font-weight: bolder;
  display: flex;
  justify-content: space-evenly;
  color: #000000;
  list-style: none;
  align-items: center;
  width: 100%;
  height: auto;

  position: absolute;
  top: 33%;
  left: 0;

  /* margin: 1rem; */
  /* padding: 0.3rem; */

  /* border: 0.1em red solid;     */
}

.menu a:hover {
  /* animation: scales 400ms ease-in-out forwards; */
  color: #000000;
}

a {
  text-decoration: none;
  color: #125214;
}

p {
  font-family: 'Nunito', sans-serif;
  padding: 2rem;
  text-align: justify;
  font-size: 1.1em;
}

main {
  padding: 1rem 0 0 0;
  margin: 0rem 1rem 2rem 1rem;
  background-color:white;
  border-radius: 1rem;
}

p {
  margin: 0;
  padding: 1.5rem;
}

#galeria {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
  background-color: var('body');

  padding: 0rem 0 2rem 0;

  /* border: 0.1em red solid; */
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 1em 0;
  max-width: 80vw;
  min-width: 600px;
  margin: auto;
  /* background-color: white; */
}

.catalogoimages {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 1em 0;
  max-width: 80vw;
  /* background-color:white; */
  border-radius: 1rem;
  
  /* border: 1px red solid; */
}

.imageinfo {
  position: relative;

  /* border: 1px blue solid; */
}

.imageinfo p {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  z-index: 9999;
}

.container {
  margin: 1rem auto 0 auto;
  position: relative;
  height: 0;
  border-radius: 1rem;
  width: 60%;
  padding-bottom: 60%;

  /* background-color: rgba(197, 73, 73, 0.9); */
  /* max-width: 1024px;
  max-height: 768px; */
  /* border: 1px solid; */
}

.slide_img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.slide_img img {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}

#i1, #i2 {
  display: none;
}

.pre, .nxt {
  width: 10%;
  height: 10%;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  background: rgba(255, 194, 204, 0.6); /*ATT*/
  z-index: 1;
  cursor: pointer;
  margin: 0.3rem;
}

.pre img, .nxt img {
  height: 50%;
  width: auto;
  align-items: center;
  position: absolute;
  top: 25%;
  left: 25%;
  opacity: 0.6;
}

.pre {
  left: 0;
}

.nxt {
  right: 0;
}

.pre:hover, .nxt:hover {
  animation: scale 400ms ease backwards;
}

.nav {
  width: 100%;
  height: 2%;
  bottom: 8%;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.dots {
  position: relative;
  bottom: 20%;
  width: 2%;
  height: 100%;
  margin: 0 0.3rem;
  border-radius: 50%;
  display: inline-block;
  background: rgba(255, 194, 204, 0.6); /*ATT*/
}

.dots:hover {
  animation: scales 400ms ease backwards;
}

.slide_img {
  z-index: -1;
}

#i1:checked ~ #one,
#i2:checked ~ #two {
  z-index: 1;
}

#i1:checked ~ .nav #dot1,
#i2:checked ~ .nav #dot2 {
  background: #fff;
}

.contatos {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-around;
  align-items: baseline;
  z-index: 2;

  max-width: 100%; /* ***ATENÇÃO*** */
  position: fixed;
  bottom: 0px;
  right: 0px;
  left: 0px;

  background-color: rgba(30, 255, 0, 0.4);
  padding: 0.4rem;
  margin: 0 1rem 0.4rem 1rem;
  border-radius: 1rem;
}

.button {
  /* padding: 0.01rem;
  border-radius: 0.05rem; */
  border: transparent;
  text-align: center;
  font-weight: bolder;
  background-color: transparent;
}

#goup {
  /* padding: 0.01rem;
  border-radius: 0.05rem; */
  border: transparent;
  text-align: center;
  font-weight: bolder;
  background-color: transparent;
}

.button:hover {
  /* animation: scales 400ms ease-in-out forwards; */
  /* filter: drop-shadow(0 0 0.2rem #28782B); */
  filter: drop-shadow(0 0 0.2rem white);
}

#goup:hover {
  /* animation: uparrow 700ms ease infinite forwards; */
  filter: drop-shadow(0 0 0.2rem white);
}

.sobre {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em 0 1em 0;
  text-align: center;

  /* background-color:white; */
  border-radius: 1rem;
  margin: 1em auto;
}

.contacto {
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
margin: auto auto;
padding: 2em;
}

.contacto p {
  text-align: center;
}

/* keyframes */

@keyframes uparrow {
  0% {
    transform:translateY(0px)
  }
  100% {
    transform: translateY(-1em)
  }
}

@keyframes scales {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes night {
  0% {
    transform:rotateY(0deg)
  }

  100% {
    transform: rotateY(180deg);
  }
}

/* media */

@media (max-width: 700px) {
  
  header {
    max-width: 1024px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
  
  .container {
      width: 90%;
      padding-bottom: 90%;
}

}

