.double-banner {
  width: 100%;
  height: 410px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.double-banner-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.banner-half {
  width: 50%;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.banner-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.banner-caption {
  position: absolute;
  bottom: 0;
  padding: 0.25em 1.65em;
  width: 70%;
  height: 135px;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}

.right-align {
  right: 0;
  left: auto;
}

.left-align {
  left: 0;
  right: auto;
}

.caption-title {
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  font-family: 'Roboto Slab', serif;
  margin: 0 0 0.5em 0;
}

.caption-description {
  font-size: 13px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #ffffff;
  font-weight: normal;
  line-height: 1.714em;
  margin: 0;
}


/* Legenda padrão */
.banner-caption {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover no bloco esquerdo */
.left-banner:hover .banner-caption.right-align {
  transform: translate(-20px, -20px); /* sobe e vai para a direita */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* brilho suave */
}

/* Hover no bloco direito */
.right-banner:hover .banner-caption.left-align {
  transform: translate(20px, -20px); /* sobe e vai para a esquerda */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* brilho suave */
}

/* Brilho no título ao passar o mouse */
.caption-title:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}


/* Responsivo */
@media (max-width: 768px) {
  .double-banner {
    height: auto;
    flex-direction: column;
  }

  .banner-half {
    width: 100%;
    height: auto;
  }

  .banner-caption {
    width: 100%;
    height: auto;
  }
}