/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Body e Fontes ===== */
body {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* ===== Scrollbar Customizada ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #007f71;
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #007f71;
}

/* ===== Links Hover Animation ===== */
.hvr-underline {
  position: relative;
  transition: color 0.3s ease;
}

.hvr-underline::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #007f71;
  transition: width 0.3s;
}

.hvr-underline:hover::after {
  width: 100%;
}

/* ===== Animações de Scroll Reveal ===== 
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
*/
/* ===== Animações de Fade In (Modal, elementos) ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

/* ===== Imagens ===== */
img {
  max-width: 100%;
  display: block;
}

/* ===== Botões ===== */
button {
  cursor: pointer;
}

/* ===== Inputs e Selects ===== */
input,
select,
textarea {
  outline: none;
}

/* ===== Transições Globais ===== */
a,
button,
input,
select {
  transition: all 0.3s ease;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee {
  animation: marquee 10s linear infinite !important;
}

/* Animação dos blobs flutuantes */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes grifar {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.animate-grifar {
  animation: grifar 1s ease forwards;
}

@keyframes floating {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
}

.animate-floating {
  animation: floating 6s ease-in-out infinite;
}


::placeholder {
  color: black !important;
  opacity: 1; 
}

::-webkit-input-placeholder {
  color: black !important;
}