
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Loader de Carregamento */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FBE2C3, #F7F2EF);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader {
  position: relative;
  width: 80px;
  height: 80px;
}

.loader:before,
.loader:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

.loader:before {
  width: 100%;
  height: 100%;
  background: rgba(183, 110, 121, 0.5); /* #b76e79 com transparência */
  animation-delay: 0.2s;
}

.loader:after {
  width: 60%;
  height: 60%;
  background: #b76e79;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* Ajuste para compensar o menu fixo */
}



html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg, #FBE2C3, #F7F2EF);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
    
}

.logo img {
  height: 50px;
}

.menu-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px; /* Espaçamento entre os itens */
}

.menu-links li a {
  display: block;
  line-height: 70px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-family: "Parisienne", cursive;
  font-size: 25px;
  position: relative;
  transition: color 0.3s ease;
}

.menu-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 15px;
  left: 50%;
  background-color: #b76e79;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0;
}

.menu-links li a:hover {
  color: #b76e79;
}

.menu-links li a:hover::after {
  width: 70%;
  opacity: 1;
}

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

/* Responsivo */
@media (max-width: 768px) {
  .menu-links {
    display: flex;
    flex-direction: column;
    background-color: rgba(251, 226, 195, 0.95);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0;
    margin: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .menu-links li {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: calc(0.1s * var(--item-index, 0));
  }

  .menu-links.show {
    max-height: 300px;
    padding: 10px 0;
  }

  .menu-links.show li {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-links li a {
    line-height: 50px;
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
    color: #333;
    transition: transform 0.3s ease;
  }

  .menu-toggle:active {
    transform: scale(0.95);
  }
}

/*------- css sessão inicio-------*/

/* Animações globais para todas as seções */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  animation: fadeIn 0.8s ease-out;
  transition: all 0.5s ease;
}

.inicio-section {
  padding: 20px 20px;
  padding-top: 100px;
  margin-top: 0px;
  background-color: #f9f9f9;
  background: linear-gradient(to right, #FFC48A, #FAE8CF);
  color: #4a4a4a;
  scroll-margin-top: 100px;
}

.inicio-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  
}

.logo-inicio {
    display: block;
    margin: 0 auto 20px auto; /* centraliza e dá espaço abaixo */
    max-height: 128px;
    width: auto; /* mantém proporção da imagem */
}

.inicio-imagem img {
  width: 580px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-15px);
        }
        100% {
            transform: translateY(0);
        }
    }

.inicio-texto {
  flex: 1;
  min-width: 300px;
  font-family: 'Segoe UI', sans-serif;
  text-align: justify;
}

.logo-topo {
  width: 120px;
  margin-bottom: 20px;
}

.inicio-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #b76e79;
  margin-bottom: 30px;
  text-align: center;
}

.inicio-texto p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.inicio-texto ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.inicio-texto ul li {
  background-color: #fff;
  border-left: 5px solid #b76e79;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hero-button {
  background-color: #FF3C6E;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #FF8C42;
}

/* Responsivo */
@media (max-width: 900px) {
  .inicio-container {
    flex-direction: column;
    text-align: center;
  }

  .inicio-texto {
    text-align: center;
  }

  .logo-topo {
    margin: 0 auto 20px;
  }
}


/*-------------- Nossos Serviços ------------*/

#servicos {
  background: linear-gradient(to right, #f7f0ff, #fff0f5);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #4a4a4a;
  scroll-margin-top: 70px;
}

.servicos-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#servicos h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #b76e79;
  font-weight: bold;
  font-family: "Parisienne", cursive;
}

#servicos p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.servico-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.servico-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.servico-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.servico-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #b76e79;
}

.servico-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
}

@media (max-width: 768px) {
  .servicos-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*-------------- Nossos Cases ------------*/

.cases {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background: linear-gradient(135deg, #1E1E1E, #FFFFFF);
}

.cases-texto {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  color: white;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: justify;
}

.cases-texto h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "Parisienne", cursive;
}

.cases-texto p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 20px;
}

.cases-lista {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.cases-lista li {
  background-color: #f0e4e7;
  color:#333;
  border-left: 5px solid #b76e79;
  padding: 15px 20px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 1.1em;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cases-lista li:hover {
  background-color: #e8d2d9;
}

.cases-carrossel {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2em;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 768px) {
  .cases {
    flex-direction: column;
    text-align: center;
  }

  .cases-texto, .cases-carrossel {
    max-width: 100%;
  }
}

/*---------------- Contato ---------------*/

#contato {
  background-color: #f7f0ff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #4a4a4a;
  text-align: center;
}

.contato-container {
  max-width: 800px;
  margin: 0 auto;
}

#contato h2 {
  font-size: 2.2em;
  color: #b76e79;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "Parisienne", cursive;
}

#contato p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 15px;
}

.contato-info p {
  margin: 10px 0;
  font-family: 'Segoe UI', sans-serif;
}

.contato-redes a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: #b76e79;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contato-redes a:hover {
  background-color: #a15c68;
}

/*---------------- Localização ---------------*/

#localizacao {
  background-color: #fff0f5;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #4a4a4a;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

.localizacao-container {
  max-width: 1200px;
  margin: 0 auto;
}

#localizacao h2 {
  font-size: 2.2em;
  color: #b76e79;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "Parisienne", cursive;
}

#localizacao p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 30px;
}

.mapa-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.mapa-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.mapa-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.localizacao-info {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.localizacao-info p {
  margin: 10px 0;
  font-family: 'Segoe UI', sans-serif;
}

.localizacao-info p strong {
  color: #b76e79;
}

.localizacao-info p:nth-child(2) {
  position: relative;
  padding-left: 25px;
}

.localizacao-info p:nth-child(2)::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: 1.2em;
  animation: pulse 2s infinite;
}

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

.mapa-botao {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #b76e79;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(183, 110, 121, 0.3);
}

.mapa-botao:hover {
  background-color: #a15c68;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(183, 110, 121, 0.5);
}

@media (max-width: 768px) {
  .mapa-container iframe {
    height: 350px;
  }
}