/* ================= HERO ================= */
.hero {
  position: relative;
  background: #E8ECF7;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Texto com gradiente e animação */
.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #0056b3, #66b2ff, #85bef7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

/* Botão com gradiente e animação */
.hero .btn-primary {
  background: linear-gradient(90deg, #0056b3 0%, #479ef6 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero .btn-primary:hover {
  box-shadow: 0 6px 16px rgba(0, 86, 179, 0.4);
  transform: translateY(-3px);
}

/* Imagem principal com entrada da direita */
.hero-img {
  max-width: 70%;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(60px);
  animation: fadeInRight 1.2s ease forwards;
  animation-delay: 0.6s;
}

/* ===== Animações ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Responsividade Hero ===== */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-img {
    max-width: 65%;
    margin-top: 2rem;
  }

  .hero .btn-primary {
    display: none !important;
  }
}

/* ================= EQUIPAMENTOS ================= */
.equipamentos {
  background-color: #a9c0ed77;
  padding: 4rem 0;
}

.equipamentos h2 {
  background: linear-gradient(90deg, #0056b3, #66b2ff, #85bef7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

/* ===== Card e carrossel ===== */
.equip-card {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

.equip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== Imagens ===== */
.equip-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ===== Transição suave do carrossel ===== */
.carousel-item {
  transition: opacity 0.8s ease-in-out;
}

/* ===== Botões de navegação ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(50%) sepia(90%) saturate(400%) hue-rotate(190deg);
  width: 32px;
  height: 32px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 12%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* ===== Botão gradiente global ===== */
.btn-gradient {
  background: linear-gradient(90deg, #0056b3 0%, #00aaff 100%);
  color: #fff !important;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #004999 0%, #0099e6 100%);
  transform: translateY(-2px);
}


.faleconosco{
    padding-top: 4rem;
}


/* ===== Botão WhatsApp com gradiente azul ===== */
.btn-whatsapp {
  background: linear-gradient(90deg, #0056b3 0%, #00aaff 100%);
  color: #fff !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
  transition: all 0.3s ease;
}

/* Ícone */
.btn-whatsapp i {
  font-size: 1.3rem;
  line-height: 1;
}

/* Hover */
.btn-whatsapp:hover {
  background: linear-gradient(90deg, #004999 0%, #0099e6 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 86, 179, 0.4);
}

/* Active */
.btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 86, 179, 0.3);
}

.white-band {
  position: relative;
  background: #E8ECF7;
  padding: 1rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}