/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #faf8f5;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header e Navegação */
.header {
  background: linear-gradient(135deg, #fdf6e3, #f9f4e8);
  border-bottom: 1px solid #e2d9c6;
  padding-bottom: 4rem;
}

/* Estilo base do menu */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  text-decoration: none;
  color: #5d4a29; /* cor padrão do site */
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #a97c50;
}

/* Botão hambúrguer (invisível no desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  display: block;
  width: 25px;
  height: 3px;
  background-color: #5d4a29;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  position: absolute;
}

.nav-toggle .hamburger::before {
  top: -8px;
  left: 0;
}

.nav-toggle .hamburger::after {
  top: 8px;
  left: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 60px; /* altura do header */
    right: -100%;
    width: 200px;
    height: calc(100% - 60px);
    background-color: #f9f7f1;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
    box-shadow: -4px 0 8px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-toggle {
    display: block;
  }
  .logo {
    font-size: 1.2rem !important;  /* tamanho menor, força a aplicação */
  }
  
  /* se tiver um span ou texto direto dentro, diminua também */
  .logo > img {
    width: 35px;
    height: auto;
  }
}


.logo {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #a97c50;
  letter-spacing: 2px;
  text-decoration: none;
  gap: 0.75rem;
}

.logo-img {
  width: 50px;  /* ajuste o tamanho conforme necessário */
  height: auto;
  object-fit: contain;
  border-radius: 8px; /* opcional, só se quiser cantos arredondados */
}


.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-list a {
  font-weight: 600;
  text-decoration: none;
  color: #7a6b54;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #a97c50;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 0 2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #5d4a29;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: #7a6b54;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #a97c50;
  color: white;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(169, 124, 80, 0.4);
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #7f5f35;
}

/* Seções */
.section {
  padding: 4rem 0;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: #5d4a29;
  margin-bottom: 1.5rem;
}

/* Sobre */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1 1 50%;
  text-align: left;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #5d4a29;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.about-text p {
  font-size: 1.1rem;
  color: #6b5e44;
  line-height: 1.7;
  max-width: 600px;
}
.about-img {
  position: relative;
  display: inline-block;
}

.about-img img {
  max-width: 100%;
  max-height: 420px;
  border-radius: 200px;
  border: 4px solid #d9c2a4;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(89, 69, 36, 0.25);
}

.about-img::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 50px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
}
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-img {
    flex: 1 1 100%;
  }

  .about-text p {
    max-width: 100%;
  }
}


/* Serviços */
.services {
  text-align: center;
}

.services h2 {
  font-size: 2.4rem;
  color: #5d4a29;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  color: #a97c50;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.75rem;
}

.card-content p {
  font-size: 1rem;
  color: #4b4b4b;
  line-height: 1.6;
}

.info-agendamento {
  margin-top: 2rem;
  font-size: 1rem;
  color: #6b5e44;
  font-style: italic;
}

/* Agendamento */
.booking p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  color: #6b5e44;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
}

/* Contato */
.contact p {
  color: #6b5e44;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* Footer */
.footer {
  background-color: #5d4a29;
  color: #f9f6f2;
  text-align: center;
  padding: 1.8rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-list {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .services .service-cards {
    flex-direction: column;
    align-items: center;
  }
}
.map-container {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.map-frame {
  border: none;
  width: 100%;
  height: 350px;
  display: block;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5d4a29;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #a97c50;
}

.icon-social {
  width: 20px;
  height: 20px;
}
.location-link,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  color: #5d4a29;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 0.75rem;
}

.location-link:hover,
.whatsapp-link:hover {
  color: #a97c50;
}

.location-link svg,
.whatsapp-link svg {
  transition: fill 0.3s ease;
}

.location-link:hover svg,
.whatsapp-link:hover svg {
  fill: #a97c50;
}
