
/* === CARROSSEL RNT === */
.carrossel .embla {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carrossel .embla__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.carrossel .embla__container {
  display: flex;
  height: 100%;
}

.carrossel .embla__slide {
  position: relative;
  flex: 0 0 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.5s ease;
}

/* Sobreposição escura */
.carrossel .overlay-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1); /* Escurecer imagem */
  z-index: 1;
  border-radius: 0;
}

.carrossel .embla__slide > * {
  position: relative;
  z-index: 2;
}

/* Título */
.carrossel .embla__slide h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00b0f0; /* Azul claro institucional */
  margin-bottom: 1rem;
}

.carrossel .embla__slide p {
  font-size: 1.25rem;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

/* Botões */
.carrossel .embla__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  padding: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carrossel .embla__button svg {
  color: #ffffff;
}

.carrossel .embla__button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carrossel .embla__button--prev {
  left: 1rem;
}

.carrossel .embla__button--next {
  right: 1rem;
}

/* Alturas opcionais */
.vh-100 { height: 100vh; }
.vh-75 { height: 75vh; }
.vh-50 { height: 50vh; }
.vh-25 { height: 25vh; }

/* Responsivo */
@media (max-width: 768px) {
  .carrossel .embla__slide h1 {
    font-size: 1.75rem;
  }

  .carrossel .embla__slide p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .carrossel .embla__button svg {
    width: 24px;
    height: 24px;
  }

  .vh-75 {
    height: 60vh;
  }
}
