
/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand&display=swap');

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Quicksand', sans-serif;
  background-color: #fff8e1;
}

body {
  padding-bottom: 100px;
}

/* HEADER COM VÍDEO */
.video-header {
  position: relative;
  height: 25vh;
  overflow: hidden;
}

.video-header video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.header-content h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  color: #f8bbd0;
}

/* FORMULÁRIO */
.form-personalizado {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fffaf0;
  border: 2px dashed #f48fb1;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(255, 192, 203, 0.2);
}

.campo {
  border: 2px solid #f8bbd0;
  border-radius: 10px;
  background-color: #fffafc;
}

.campo:focus {
  border-color: #f48fb1;
  box-shadow: 0 0 0 0.2rem rgba(244, 143, 177, 0.25);
}

.btn-form {
  display: block;
  margin: 30px auto 0 auto;
  background-color: #f48fb1;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  padding: 10px 30px;
  border: none;
  transition: background-color 0.3s ease;
  text-align: center;
}

.btn-form:hover {
  background-color: #ec407a;
}

.fonte-contorno {
  font-family: 'Fredoka One', sans-serif;
  color: #ff6f61;
  -webkit-text-stroke: 1px #ff8a00; /* contorno laranja */
  text-stroke: 1px #ff8a00; /* compatível com alguns navegadores */
}

/* Fonte cursiva para textos elegantes */
.fonte-cursiva {
  font-family: 'Pacifico', cursive;
  color: #ff8a00; /* laranja escuro */
}

.titulo-form {
  font-family: 'Pacifico', cursive;
  color: #f06292;
}

/* MAPA */
.mapa-embed iframe {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* RODAPÉ */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff0d9;
  padding: 20px 10px;
  font-size: 0.95rem;
  border-top: 1px solid #f3e5f5;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  color: #8d6e63;
  z-index: 1000;
}

.assinatura {
  color: #9575cd;
  font-style: italic;
}

.marca-link {
  color: #7e57c2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.marca-link:hover {
  color: #5e35b1;
  text-decoration: underline;
}

#sugestoes .card {
  height: 100%;
}

/* MEDIA QUERIES RESPONSIVOS */

/* MOBILE PEQUENO */
@media (max-width: 575.98px) {
  .video-header {
    height: 30vh;
  }

  .video-header video {
    object-fit: cover;
    object-position: center;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .form-personalizado {
    padding: 20px;
  }

  .btn-form {
    padding: 8px 20px;
  }
}

/* TABLET */
@media (min-width: 768px) {
  .header-content h1 {
    font-size: 3rem;
  }
}

/* DESKTOP */
@media (min-width: 992px) {
  .form-personalizado {
    padding: 40px;
  }

  .btn-form {
    padding: 12px 40px;
    font-size: 1.1rem;
  }
}

/* DESKTOP GRANDE */
@media (min-width: 1200px) {
  .header-content h1 {
    font-size: 4rem;
  }
}

@media (min-width: 2600px) {
  .video-header {
    height: 35vh;
  }
}
