/* ====== CARROSSEL GODOY (fundo limpo) ====== */
.swiper-container {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide-content {
  text-align: center;
  color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 90%;
  background: none;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.slide-content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-carousel {
  background-color: #D92332;
  color: #fff;
  padding: 12px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-carousel:hover {
  background-color: #F2811D;
}

.video-slide {
  position: relative;
}

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

.video-slide .slide-content {
  position: relative;
  z-index: 2;
}


/* Ajuste visual das setas do carrossel */
.swiper-button-next,
.swiper-button-prev {
  color: #f5bc1c;
  font-size: 32px;
  width: 48px;
  height: 48px;
}
