@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f7f3ef;
  color: #5a4633;
  line-height: 1.6;
  scroll-behavior: smooth;
}
/* estilizacao do botao do wpp */

#whatsappButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5);
}

#whatsappButton i {
  color: white;
  font-size: 30px;
}

/* fimmmm da estilizacao */

header {
  background-color: #D4c098;
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  height: 140px;          
  line-height: 50px;     
  padding: 0 1rem;       
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  padding: 8px 20px;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
  position: relative;
  top: -1.6px;
  margin-left: 32px; 
}

.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.menu li a {
  font-weight: 600;
  font-size: 1rem;
  color: #5a4633cc;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.menu li a:hover {
  border-bottom: 2px solid #705D15 !important;
  color: #705D15 !important;
}

.menu li a.active {
  color: #5a4633cc;
  border-bottom: 2px solid transparent;
}



.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #3f33089d;
    cursor: pointer;
    position: absolute;
    top: 3rem;
    right: 1.5rem;
    z-index: 102;
  }

  .menu {
    position: fixed;
    top: 140px;
    right: 0;
    background: #f7f3ef;
    width: 220px;
    padding: 1rem;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #ddd;
    height: calc(100vh - 140px);
    overflow-y: auto;
    z-index: 101;
    display: flex;
  }

  .menu.active {
    transform: translateX(0);
  }

  .menu li {
    margin-bottom: 1.5rem;
  }

  .menu li a {
    font-weight: 600;
    font-size: 1rem;
    color: #5a4633;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
  }

  .menu li a:hover {
    color: #705D15;
    border-bottom: 2px solid #705D15;
  }
}


.container {
  max-width: 1000px;
  margin: 160px auto 2rem;
  padding: 0 1rem;
}

.procedimento {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #b99461;
}
.procedimento:hover {
  transform: translateY(-5px);
}

.procedimento .texto {
  flex: 1;
  padding: 2rem;
}

.procedimento .texto h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.procedimento .texto p {
  font-size: 1rem;
  color: #5a4633;
  margin-bottom: 1.5rem;
}

.procedimento .texto button {
  background: transparent;
  border: 1px solid #b5bcc7;
  color: #5a4633;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.procedimento .texto button:hover {
  background: #705D15;
  color: #fff;
}

.procedimento .imagem {
  flex: 1;
  padding: 2rem;
  text-align: center;
}

.procedimento .imagem img {
  max-width: 200px;
  height: auto;
}

.procedimento:nth-child(even) {
  flex-direction: row-reverse;
}


h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #6b4c3b;
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #6b4c3b;
  border-bottom: 2px solid #d9b382;
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
}



.media-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.media-gallery img {
  border-radius: 8px;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(107, 76, 59, 0.3);
}

#sobre-empresa p {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #5a4633;
  line-height: 1.7;
  text-align: center;
}

.footer {
  background-color: #D4c098;
  color: #705151;
  padding: 3rem 1.5rem;
  font-size: 0.95rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #533e3e;
}

.footer-column p {
  margin: 0.3rem 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-column {
    max-width: 400px;
  }


  .container {
    margin-top: 170px;
    padding: 0 1rem;
  }

  .procedimento {
    flex-direction: column !important;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .procedimento .texto {
    padding: 1rem 0;
  }

  .procedimento .texto h3 {
    font-size: 1.5rem;
  }

  .procedimento .texto p {
    font-size: 1rem;
  }

  .procedimento .imagem {
    display: none !important;
  }

  .procedimento:nth-child(even) {
    flex-direction: column !important;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  a {
  color: inherit;
  text-decoration: none;
  }
  a:hover {
    color: #b99461;
  }

}
