/*======== RESET ============*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button {
  text-decoration: none;
}

img {
  width: 100vw;
  height: auto;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}


/*======== HEADER ============*/

#header {
  border-bottom: 3px solid #AC944D;
  margin-bottom: 2rem;
  display: flex;
  position: absolute;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: white;
  width: 100vw;
  height: 8rem;
}

#logo_img {
  width: 100px;
  height: auto;
  margin-left: 1rem;
  align-content: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.title{
  color: black;
  margin-right: 4rem;
}

@media (max-width: 550px){
  #header{
    width: 550px;
  }
}
@media (max-width: 880px){
  #header{
    width: 100vw;
  }
}


/* Esconder Menu */

nav .menu {
  opacity: 0;
  visibility: hidden;
  top: -20rem;
  transition: 0.2s;
}

nav .menu ul {
  display: none;
}

/* Mostrar menu*/
nav.show .menu {
  opacity: 1;
  visibility: visible;

  background: whitesmoke;

  height: 100vh;
  width: 100vw;

  position: fixed;
  top: 0;
  left: 0;

  display: grid;
  place-content: center;
}

nav.show ul.grid {
  gap: 4rem;
}

nav.show .menu ul {
  display: grid;
}

/*======== DESENHAR LINHA EMBAIXO DOS LINKS ============*/

nav a {
  transition: color 0.2s;
  position: relative;
  font-size: 30px;
}

nav a:hover {
  color: #AC944D;
  transition: 0.2s;
}

nav a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #AC944D;


  position: absolute;
  left: 0;
  bottom: -0.3rem;

  transition: width 0.2s;
}

nav a:hover::after {
  width: 100%;
}

nav a:active {
  color: #AC944D;
}

.toggle {
  color: #AC944D;
  font-size: 3rem;
  cursor: pointer;

}

nav .icon-menu {

  position: absolute;
  top: 1.5rem;
  right: 1.5rem;

  transition: 0.2s;
}


nav .icon-close {
  visibility: hidden;
  opacity: 0;

  position: absolute;
  top: -1.5rem;
  right: 1.5rem;

  transition: 0.2s;
}

nav.show div.icon-menu {
  opacity: 0;
}

nav.show div.icon-close {
  visibility: visible;
  opacity: 1;
  top: 1.5rem;
}


/*======== BASE ============*/

header {
  align-content: space-between;
}

html {
  scroll-behavior: smooth;
}

a {
  color: white;
}

body {
  background-color: #231f20;
  font: 400 1rem 'DM Sans', sans-serif;
  font-size: 20px;
}

p {
  color: white;
  margin-left: 4rem;
  margin-right: 4rem;
}

h2 {
  text-align: center;
  flex-wrap: wrap;
  font-size: 50px;
  color: #AC944D;
}

.section1 {
  text-align: center;
  margin-top: 7rem;
}

#button {
  padding: 1rem;
  background-color: #AC944D;
  color: white;
  border: #AC944D;
  border-radius: 10px;
  font-size: 25px;
  cursor: pointer;
}

#button:active {
  transform: scale(0.96);
}

#button:hover {
  background-color: #AC944D;
  color: #231f20;
  transition: 0.4s;
}

/*======== HOME ============*/

.image {
  margin-top: 7rem;
  width: 100%;
  height: auto;
}

/*======== ABOUT ============*/

.section2{
  display: grid;
}

#text-about{
  width: 98vw;
}

.text_about {
  margin-left: 1rem;
  text-align: justify;
  margin-right: 1rem;
}

.image_about {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: auto;
}

#logo_black {
  width: 30%;
  height: auto;
}

#about_us {
  text-align: justify;
  margin-left: 50%;
}

@media (max-width: 414px){
  .text-about{
    width: 100vw;
  }
}

@media (max-width: 550px){
  #text-about{
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin-left: 0px;
    margin-right: 3rem;
  }
}

/*======== PRODUCTS ============*/

h3 {
  font-size: 30px;
  color: white;
}

#image_copo1{
  width: 30%;
  margin-left: 30%;
  margin-right: 10%;
}
#image_copo2{
  width: 30%;
  margin-left: 30%;
  margin-right: 40%;
}
#image_copo3{
  width: 30%;
  margin-left: 30%;
  margin-right: 20%;
}

#text_copo1 {
  margin-left: 17%;
  color: white;
  top: 7rem;
}

#text_copo2 {
  margin-left: 30%;
  color: white;
  top: 7rem;
}

#text_copo3 {
  margin-left: 27%;
  color: white;
  top: 7rem;
}

.copo_chopp {
  display: flex;
}

.text_img{
  margin-top: 5%;
  text-align: justify;
  font-style: italic;
  font-size: smaller;
  margin-left: 17%;
}

@media (max-width: 300px){
  .copo_chopp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #image_copo1{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  #image_copo2{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  #image_copo3{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  .text_img{
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: justify;
    font-style: italic;
    font-size: smaller;
    margin-left: 5%;
    
  }
  #text_copo1 {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  
  #text_copo2 {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  
  #text_copo3 {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
}

@media (max-width: 380px){
  .copo_chopp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #image_copo1{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  #image_copo2{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  #image_copo3{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  .text_img{
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: justify;
    font-style: italic;
    font-size: smaller;
    margin-left: 5%;
    
  }
  #text_copo1 {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  
  #text_copo2 {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  
  #text_copo3 {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
}

@media (max-width: 550px){
  .copo_chopp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #image_copo1{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  #image_copo2{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  #image_copo3{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  .text_img{
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: justify;
    font-style: italic;
    font-size: smaller;
    margin-left: 5%;
    
  }
  #text_copo1 {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  
  #text_copo2 {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  
  #text_copo3 {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
}

@media (max-width: 880px){
  .copo_chopp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #image_copo1{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  #image_copo2{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  #image_copo3{
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  .text_img{
    width: 90vw;
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: justify;
    font-style: italic;
    font-size: smaller;
    margin-left: 5%;
    
  }
  #text_copo1 {
    width: 90vw;
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  
  #text_copo2 {
    width: 90vw;
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  
  #text_copo3 {
    width: 90vw;
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
}


/*======== EVENTS ============*/

.entrega {
  display: flex;
}

#carro_entrega{
  height: 30%;
  width: 100%;
  align-items: center;
}

#text-event{
  width: 100vw;
}

.text_event{
  margin-left: 1rem;
  text-align: justify;
  margin-right: 3rem;
}

@media (max-width: 414px){
  #text-event{
    display: flex;
    flex-direction: column;
  }
  .text_event{
    margin-left: 1rem;
    text-align: justify;
    margin-right: 1rem;
  }
}


/*======== FOOTER ============*/


.contatos_footer {
  background-color: white;
  border-top: 3px solid #AC944D;
  width: 100vw;
  display: flexbox;
}

#footer {
  margin-top: 5%;
  display: flex;
  color: #231f20;
  justify-content: center;
  text-align: center;
  width: auto;
}

#footer1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90vw;
}

.icon-footer {
  display: flex;
  color: #AC944D;
  font-size: 5rem;
  cursor: pointer;
  margin: 5%;
}

#icon{
  display: flex;
  justify-content: space-around;
  color: #AC944D;
  font-size: 5rem;
  cursor: pointer;
}

.text_footer {
  color: #AC944D;
  margin-bottom: 1%;
  width: 100%;
  flex-wrap: wrap;
}

iframe {
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

/* Media Queries */


@media (max-width: 375px){
  /* ==== media header ==== */

  #header{
    width: 375px;
    
  }

  /* ==== media footer ==== */

  #footer{
    margin-left: 1rem;
    margin-right: 1rem;
    width: 100%;
    font-size: 25px;
    align-content: center;
    place-content: center;
  }

  #footer1 {
    margin-left: 20%;
    margin-right: 10%;
    width: auto;
    align-items: center;
    align-content: center;
  }

/* ==== media produtos ==== */

  #image_copo1{
    width: 40px;
    margin-right: 0rem;
    margin-left: 30px;
  }
  #image_copo2{
    width: 40px;
    margin-right: 0rem;
    margin-left: 5rem;
  }
  #image_copo3{
    width: 40px;
    margin-right: 0rem;
    margin-left: 5rem;
  }
  #text_copo1 {
    margin-left: 25px;
    color: white;
    top: 7rem;
    width: 10px;
  }
  #text_copo2 {
    margin-left: 70px;
    color: white;
    top: 7rem;
    width: 10px;
  }
  #text_copo3 {
    margin-left: 75px;
    color: white;
    top: 7rem;
    width: 10px;
  }

  /* ==== media eventos ==== */

  #carro_entrega{
    height: 70%;
    width: 100%;
    align-items: center;
  }

  .text_event{
    width: 80%;
    margin-left: 3rem;
    text-align: justify;
  }

  /* ==== media about ==== */

  .text_about {
    margin-left: 3rem;
    text-align: justify;
    margin-right: 5rem;
    width: 80%;
  }

}

