 :root {
  --gold-light: #fff8e1;
  /* Amarelo claro vibrante */
  --gold-medium: #f9a825;
  /* Dourado vibrante */
  --gold-dark: #ff6f00;
  /* Laranja queimado (ótimo contraste) */
  --text-dark: #212121;
  /* Preto suave */
  --text-light: #ffffff;
}

html, body {
  font-family: 'Segoe UI', sans-serif;
  /* background-color: var(--gold-light); */
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  height: 100%;
  /* overflow: hidden; */
  /* opcional */
}

section {
  /* padding: 3rem 1.5rem; */
}

.has-bg-light {
  /* background-color: var(--gold-light); */
}

.has-bg-highlight {
  background-color: #fff;
}

.has-text-highlight {
  color: var(--gold-dark);
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
}

.button.is-primary {
  background-color: var(--gold-dark);
  border: none;
  color: var(--text-light);
  font-weight: bold;
}

.button.is-primary:hover {
  background-color: var(--gold-medium);
  color: var(--text-light);
}

input,
textarea {
  background-color: #fff;
  color: var(--text-dark);
  border: 1px solid #ccc;
}

input::placeholder,
textarea::placeholder {
  color: #777;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.swiper {
  width: 100%;
  height: 500px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.buttons a.button {
  background-color: #fff;
  color: var(--gold-dark);
  border: 2px solid var(--gold-dark);
  font-weight: 600;
}

.buttons a.button:hover {
  background-color: var(--gold-medium);
  color: var(--text-light);
  border-color: var(--gold-medium);
}

.navbar-brand img {
  max-height: 136px !important;
  height: 136px;
}

.equal-height {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/*  
css para sequencia de ações 
*/

.timeline-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  padding: 2rem 0;
}

.step {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
}

.circle-tag {
  background-color: #00d1b2;
  color: white;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 0.5rem;
}

.icon i {
  font-size: 1.8rem;
  color: #00d1b2;
  margin-bottom: 0.5rem;
}

.arrow {
  font-size: 1.5rem;
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .timeline-flow {
    flex-direction: column;
  }
  
  .arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}


/* beneficios */

.benefit-card {
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/*.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.4s; }
.benefit-card:nth-child(3) { animation-delay: 0.6s; }*/

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* footer */
.footer a:hover {
  color: #00d1b2;
  /* verde suave da Bulma */
  text-decoration: underline;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  /* z-index: -1; */
  /* Responsiveness */
  @media (max-width: 768px) {
    display: none;
  }
}

/* Video element inside */
video {
  position: absolute;
  bottom: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.6;
  object-fit: cover;
}

.title{
  color: #000;
}
