/* === Hero Carousel Slide === */
.hero-carousel .swiper-slide {
  aspect-ratio: 3840 / 1370;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
}

/* === Grid Banner Final === */
.banner-grid-final {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.banner-grid-final .col-30,
.banner-grid-final .col-70 {
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

.banner-grid-final .col-30 {
  width: 30%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-grid-final .col-70 {
  width: 70%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.img-fundo-esquerda {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  z-index: 0;
  display: block;
}

.banner-grid-final .col-70 picture {
  width: 100%;
  height: 100%;
  display: block;
}

.banner-grid-final .col-70 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
  display: block;
}

/* === Conteúdo do Banner === */
.conteudo-banner {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
}

/* === Blocos Verticais Proporcionais === */
.bloco-titulo {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.bloco-texto {
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-right: 1rem;
}

.bloco-botao {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* corrigido: botão vai para a direita */
}

/* === Tipografia === */
.titulo-banner {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 2vw + 2rem, 5rem);
  background: linear-gradient(90deg, #E82A78, #F17D37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 1rem 0 0 0; /* corrigido: desce o FIELD FORCE */
}

.texto-banner {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1vw + 0.75rem, 1.75rem);
  color: #E82A78;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

/* === Botão Gradiente === */
.btn-gradiente {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  background: linear-gradient(90deg, #F17D37, #E82A78);
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.btn-gradiente:hover {
  opacity: 0.9;
}

/* === Alinhamento Reversível === */
.alinhamento-esquerda {
  align-items: flex-start !important;
  text-align: left !important;
}

.alinhamento-direita {
  align-items: flex-end !important;
  text-align: right !important;
}

/* === Bloco Faixa Centralizada === */
.oiapoque-wrapper {
  width: 100%;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oiapoque-faixa {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #F17D37, #E82A78);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.oiapoque-faixa .col-esquerda,
.oiapoque-faixa .col-centro,
.oiapoque-faixa .col-direita {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.oiapoque-faixa .col-esquerda {
  width: 30%;
  text-align: center;
}

.oiapoque-faixa .col-centro {
  width: 40%;
}

.oiapoque-faixa .col-direita {
  width: 30%;
  text-align: center;
}

.oiapoque-faixa .col-centro img {
  height: 300px;
  width: auto;
  object-fit: contain;
}

.oiapoque-faixa h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  margin: 0;
  color: #fff;
}

.oiapoque-faixa h2 span:first-child {
  color: #FFB347;
}

.oiapoque-faixa p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}











