body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #e6e6f0;
  color: #3d3d4d;
}

.top-nav {
  background: #d8d2f1;
  padding: 30px 20px;
  display: flex;
  justify-content: center; /* Agora centraliza */
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.top-nav .titulo {
  font-size: 2.5em;
  font-weight: bold;
  color: #4b3b69;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);

  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInSlide 1.2s ease-out forwards;
}

@keyframes fadeInSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  text-align: center;
  padding: 30px 0;
  background-color: #fffafc;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: #cbc3e3;
  color: #2e2e3e;
}

.hero h1 {
  text-align: center;
  width: 100%;
  font-size: 2.5em;
  color: #4b3b69; /* ou a cor que você estiver usando */
  margin-bottom: 20px;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background: #e6e6f0;
  box-shadow: 8px 8px 15px #bebebe,
              -8px -8px 15px #ffffff;
  border-radius: 15px;
  padding: 20px;
  width: 200px;
  font-size: 1.1em;
}

.card i {
  font-size: 1.5em;
  display: block;
  margin-bottom: 10px;
}

.galeria {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.creditos {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: #888; /* cinza claro */
  padding: 10px 20px;
  margin-top: 40px;
  opacity: 0.5;
  line-height: 1.4;
  word-wrap: break-word;
}

.creditos:hover {
  opacity: 0.8;
}

.galeria img {
  width: 240px;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
}

.btn-neon {
  background: #b19cd9;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 4px 4px 8px #a189c5,
              -4px -4px 8px #cbb3f5;
  transition: 0.3s ease;
}

.btn-neon:hover {
  background: #9e8acb;
}

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px;
  border-radius: 50%;
  font-size: 1.6em;
  z-index: 999;
  text-align: center;
}

.whatsapp-fixo:hover {
  background-color: #1ebe5d;
}


.btn-neon.destaque {
  background-color: #128C7E;
  color: white;
  padding: 12px 28px;
  font-size: 1em;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-neon.destaque:hover {
  background-color: #0d6d5b;
}

.flores {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.flor {
  position: absolute;
  width: 60px; /* ajuste como quiser */
  opacity: 0.7;
  animation: flutuar 12s infinite ease-in-out;
}

@keyframes flutuar {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(10deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.flores-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.flor {
  position: absolute;
  top: -100px;
  width: 60px;
  opacity: 0;
  pointer-events: none;
  animation: cair 5s linear infinite;
  animation-delay: var(--delay);
  animation-fill-mode: forwards;
}

@keyframes cair {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}


/* Variações para cada flor */
.flor1 { left: 5%; animation-delay: 0s; animation-duration: 12s; }
.flor2 { left: 15%; animation-delay: 3s; animation-duration: 10s; }
.flor3 { left: 25%; animation-delay: 6s; animation-duration: 14s; }
.flor4 { left: 35%; animation-delay: 1s; animation-duration: 11s; }
.flor5 { left: 45%; animation-delay: 5s; animation-duration: 13s; }
.flor6 { left: 55%; animation-delay: 2s; animation-duration: 12s; }
.flor7 { left: 65%; animation-delay: 4s; animation-duration: 10s; }
.flor8 { left: 75%; animation-delay: 7s; animation-duration: 14s; }
.flor9 { left: 85%; animation-delay: 3s; animation-duration: 13s; }
.flor10 { left: 95%; animation-delay: 0s; animation-duration: 12s; }

.feedbacks {
  padding: 60px 20px;
  text-align: center;
  background-color: #f6f3ff;
}

.feedbacks h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #4b3b69;
}

.carousel-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel {
  display: flex;
  gap: 20px;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

.feedback-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #e6e6f0;
  border-radius: 15px;
  box-shadow: 8px 8px 15px #bebebe,
              -8px -8px 15px #ffffff;
  padding: 20px;
  text-align: left;
}

.feedback-card .stars {
  color: #f5c518;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.feedback-card span {
  display: block;
  margin-top: 10px;
  color: #7b7b7b;
  font-style: italic;
}

.formulario-feedback {
  display: none;
  background: #e6e6f0;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 6px 6px 12px #bebebe,
              -6px -6px 12px #ffffff;
  margin: 30px auto;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.formulario-feedback h3 {
  margin-bottom: 15px;
  color: #4b3b69;
}

.formulario-feedback input,
.formulario-feedback textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: #f3f3f3;
  font-family: 'Segoe UI', sans-serif;
}

.formulario-feedback textarea {
  height: 100px;
  resize: none;
}

.estrelas span {
  font-size: 1.8em;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.estrelas span.selecionada {
  color: #f5c518;
}

.feedback-btn-container {
  text-align: center;
  margin: 40px 0;
}

.btn-feedback {
  background: #e6d5f7;
  color: #5a2c91;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 25px;
  box-shadow: 5px 5px 10px #d0c0e0, -5px -5px 10px #f4eaff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-feedback:hover {
  background: #d3b8f0;
  box-shadow: inset 3px 3px 6px #c1a6dc, inset -3px -3px 6px #efdfff;
}

.feedback-card .stars {
  font-size: 22px;
  color: #ffd700;
  text-shadow: 0 0 5px #ffd700, 0 0 10px #ffcc00;
  margin-bottom: 8px;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Impede rolagem lateral */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Garante que tudo respeite o tamanho da tela */
* {
  box-sizing: border-box;
}

/* Corrige largura em carrossel e outras áreas */
.carousel-container,
.cards,
.galeria {
  max-width: 100%;
  overflow-x: auto;
}
