
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Raleway:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #FAF4ED;
  color: #5A4A42;
}

header, footer {
  background-color: #E8CFC9;
  text-align: center;
  padding: 20px;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: #5A4A42;
  margin: 0;
}

main {
  padding: 30px;
  max-width: 800px;
  margin: auto;
}

section {
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #5A4A42;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.visually-hidden{
  font-size: clamp(1.25rem, 2vw + 1rem, 2rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin: 12px auto 0;
  max-width: 80ch;
  color: #5a463c; /* tom mais suave */
}


input, textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d5c1b2;
  font-size: 1em;
}

button {
  padding: 10px;
  border: none;
  background-color: #C7A88E;
  color: white;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #b5927a;
}

.success {
  color: #3c8a63;
  font-weight: bold;
}

.error {
  color: #c04141;
  font-weight: bold;
}

footer {
  font-size: 0.9em;
  color: #5A4A42;
}






    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #fcf5eb;
      color: #4a3b36;
    }

    header {
      background: linear-gradient(to bottom, #d3aa94, #b6785e);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: white;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      margin: 0;
      padding: 0;
    }

    nav a {
      text-decoration: none;
      color: white;
      font-weight: bold;
    }

    .btn-login {
      padding: 8px 16px;
      background-color: white;
      color: #d3aa94;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
    }

    .hero {
      background-color: #fcf5eb;
      text-align: center;
      padding: 40px 20px;
    }

    .hero img {
      max-width: 100%;
      height: auto;
    }

    .servicos-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      padding: 40px 20px;
      background-color: #fcf5eb;
      margin-top: -20px;
    }

    .sessao {
      display: flex;
      flex-direction: column;
      background-color: #f8ede9;
      border-radius: 20px;
      padding: 20px;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .sessao:hover {
      transform: translateY(-5px);
    }

    .sessao .imagem img {
      width: 100%;
      max-width: 250px;
      border-radius: 40px;
    }

    .sessao .texto {
      padding-top: 20px;
      text-align: center;
    }

    .sessao .texto h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #4a2f27;
    }

    .sessao .texto ul {
      text-align: left;
      padding-left: 20px;
    }

    .sessao .texto ul li {
      margin-bottom: 10px;
    }

    .cta-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #b6785e;
      color: white;
      border: none;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    
    .cta-btn, .orcamento-btn {
      transition: all 0.3s ease;
     }
 
    .cta-btn:hover {
      background-color: #7a4e3b;
    }

    .sobre {
     background: linear-gradient(to bottom, #d3aa94, #b6785e);
      display: flex;
      flex-wrap: wrap;
      padding: 40px 20px;
      align-items: center;
      justify-content: center;
      margin-top: -40px;
    }

    .sobre img {
      width: 500px;
      max-width: 20%;
      border-radius: 20px;
      margin: 20px;
    }

    .sobre-texto {
      color: #fff3e6;
      max-width: 600px;
      font-size: 1.2rem;
    }

   

   .depoimentos {
  padding: 50px 20px;
  background-color: #fcf5eb;
  text-align: center;
  margin-top: -55px;
}

.swiper.mySwiper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto; /* centraliza horizontalmente */
  overflow: hidden;
  padding-bottom: 40px;
}

.swiper-wrapper {
  display: flex; /* garante funcionamento correto */
}

  .swiper-slide {
  background: #fcf5eb;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza horizontalmente */
  justify-content: center;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  transition: transform 0.5s ease, opacity 0.5s ease;
}





   .swiper-slide {
  background: #fcf5eb;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  text-align: center;
}

.depoimento-conteudo {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.foto-depo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.depoimento-conteudo p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  margin: 10px 0;
  position: relative;
  padding: 0 15px;
}

.depoimento-conteudo p::before {
  content: "“";
  font-size: 2rem;
  color: #b6785e;
  position: absolute;
  left: -15px;
  top: -10px;
}

.depoimento-conteudo p::after {
  content: "”";
  font-size: 2rem;
  color: #b6785e;
  position: absolute;
  right: -15px;
  bottom: -10px;
}

.depoimento-conteudo strong {
  font-weight: bold;
  margin-top: 10px;
}

.estrelas {
  color: #f7c948;
  font-size: 1rem;
}



   /* Animações suaves nas sessões */
    [data-aos] {
     opacity: 0;
     transition-property: opacity, transform;
     transition-duration: 0.6s;
     transition-timing-function: ease-in-out;
    }

    [data-aos].aos-animate {
     opacity: 1;
    }

    .sessao[data-aos] {
     transform: translateY(40px);
    }

    .sessao[data-aos].aos-animate {
     transform: translateY(0);
    }

   
    .swiper-pagination {
      margin-top: -30px !important;
      background-color: #fcf5eb;
    }

    .swiper-pagination-bullet {
      margin: 0 10px !important;
    }

    /* Tipografia refinada */
    
    h1, h2, h3, h4, h5, h6 {
     font-family: 'Georgia', serif;
    }

    /* Ajustes footer mobile */
    .contato-icones {
     gap: 20px;
     font-size: 0.95rem;
     flex-wrap: wrap;
     justify-content: center;
    }

     /* Link externo seguro */
     

    footer {
      background: linear-gradient(to bottom, #d3aa94, #b6785e);
      color: white;
      text-align: center;
      margin-top: -70px;
      padding: 60px 20px;
    }

    .footer-contato {
      margin-top: 30px;
    }

    .footer-contato h3 {
      margin-bottom: 20px;
      font-size: 1.5rem;
    }

    .contato-icones {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin: 20px 0;
      font-size: 1rem;
    }

    .contato-icones a {
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 500;
    }

    .orcamento-btn {
      margin-top: 20px;
      display: inline-block;
      padding: 10px 25px;
      border: 2px solid white;
      border-radius: 6px;
      color: white;
      background-color: transparent;
      font-weight: bold;
      text-decoration: none;
      transition: 0.3s;
    }

    .orcamento-btn:hover {
      background-color: white;
      color: #a97c66;
    }

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      padding: 12px 16px;
      border-radius: 50%;
      font-size: 24px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      z-index: 1000;
      animation: pulse 2s infinite;
    }

   
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }


    .frase-destaque {
     background-color: #fcf5eb;
     padding: 60px 20px;
     text-align: center;
     display: flex;
     flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: -40px;
}

.frase-destaque p {
  font-size: 1.6rem;
  font-style: italic;
  color: #6a4536;
  max-width: 600px;
  margin: 0 auto;
}

.frase-destaque img {
  width: 180px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* Correções de layout mobile */
@media (max-width: 768px) {
  header {
    padding: 20px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .servicos-container,
  .depoimentos,
  footer {
    margin-top: 0 !important;
    padding-left: 16px;
    padding-right: 16px;
  }

  .sobre img {
    max-width: 100%;
    height: auto;
  }

  .frase-destaque {
    padding: 40px 16px;
    gap: 20px;
  }

  .frase-destaque p {
    font-size: 1.2rem;
  }

  .frase-destaque img {
    width: 140px;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

nav ul.menu-principal {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul.menu-principal li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    width: 100%;
  }

  nav ul.menu-principal {
    display: none;
    flex-direction: column;
    background-color: #b6785e;
    width: 100%;
    padding: 20px 20px 10px;
    border-radius: 0 0 12px 12px;
  }

  nav ul.menu-principal.show {
    display: flex;
  }

  nav ul.menu-principal li {
    margin: 10px 0;
  }

  nav ul.menu-principal li a {
    font-size: 1.1rem;
  }
}
