@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;
}

header.hide {
  top: -50px; 
}

nav {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0; 
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
  position: relative;
  top: -1.6px;
  margin-left: 32px; 
}

img {
  max-width: 100%;
  display: block;
}


.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,
.menu li a.active {
  border-bottom: 2px solid #705D15;
  color: #705D15;
}

.menu-toggle {
  display: none; 
}

#profissionais {
  padding: 100px 10%;
  background-color: #f5f2ee;
}

#profissionais h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 70px;
  color: #4e3b31;
}

.profissional {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.profissional .foto img {
  width: 380px;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.profissional .conteudo {
  flex: 1;
}

.profissional h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #3b2d26;
}

.profissional p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #6e5a4f;
}


@media (max-width: 480px) {

  #profissionais {
    padding: 80px 20px;
  }

  #profissionais h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .profissional {
    flex-direction: column; 
    gap: 30px;
    margin-bottom: 60px;
  }

  .profissional .foto img {
    width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 16px;
  }

  .profissional .conteudo {
    width: 100%;
    text-align: left;
  }

  .profissional h3 {
    font-size: 1.4rem;
  }

  .profissional p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

}

@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;
}

h1, h2 {
  color: #6b4c3b;
  margin-bottom: 1rem;
}

h1 {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

h2 {
  font-weight: 600;
  font-size: 1.8rem;
  border-bottom: 2px solid #d9b382;
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
}

#profissionais ul {
  list-style: disc inside;
  font-weight: 400;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #5a4633;
}

#profissionais ul li {
  margin-bottom: 0.8rem;
}

.media-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.media-gallery img,
.media-gallery video {
  border-radius: 8px;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(107, 76, 59, 0.3);
}

#localizacao iframe {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 400px;
  margin: 0 auto 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(107, 76, 59, 0.3);
  border: none;
}

#sobre-empresa p {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #5a4633;
  line-height: 1.7;
  text-align: left;
}

footer {
  background-color: #D4c098;
  color: #705151;
  padding: 40px 5%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 10px;
}

.footer-column p {
  margin: 5px 0;
  line-height: 1.4;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column a {
  color: #533e3e;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #3f33089d;
    position: absolute;
    top: 3rem;   
    right: 1.5rem; 
    z-index: 102;  
  }
  ul.menu {
    position: fixed;
    top: 60px;
    right: 0;
    flex-direction: column;
    background: #f7f3ef;
    width: 220px;
    padding: 1rem;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid #b3afaf;
    height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 101;
    display: flex;
  }
  ul.menu.show {
    transform: translateX(0);
  }
  ul.menu li {
    margin-bottom: 1rem;
  }
  ul.menu li a {
    font-size: 1rem;
    color: #5a4633;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-column {
    max-width: 400px;
  }
}

