.hero-section4 {
  min-height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
}
.hero-overlay4 {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: url('../img/fondo3.jpg');
  opacity: 1;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-section4 > *:not(.hero-overlay4) {
  position: relative;
  z-index: 2;
}

/* Logo ESQUINA INFERIOR DERECHA */
.financial-logo {
  position: absolute !important;
  right: 80px;
  bottom:80px;
  left: auto;
  top: auto;
  width: 200px;
  z-index: 2;
}

.financial-title {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #a09b9e;
  z-index: 2;
  letter-spacing: 2px;
  text-align: center;
}

.financial-card {
  position: relative;
  z-index: 2;
  margin-top: 180px;
  margin-left: 120px;
  display: flex;
  background: transparent;
  gap: 50px;
}

.financial-img,
.financial-financial-img {
    width: 450px;
    height: 330px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.financial-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 340px;
}

.financial-card-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #a09b9e;
  margin-bottom: 15px;
  line-height: 1;
}

.financial-card-content p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 400;
}

.financial-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8em;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.financial-link:hover {
  color: #a09b9e;
}

/* Solo celulares */
@media (max-width: 480px) {
    .financial-card {
        margin-top: 70px;
        gap: 18px;
    }
    .financial-title {
        font-size: 1.6rem;
        top: 18px;
    }
    .financial-logo {
        width: 90px;
        right: 10px;
        bottom: 10px;
        left: auto;
        top: auto;
    }
}

/* Celulares y tablets */
@media (max-width: 768px) {
    .financial-card {
        flex-direction: column;
        align-items: center;
        margin-top: 100px;
        margin-left: 0;
        gap: 24px;
    }
    .financial-img,
    .financial-financial-img {
        width: 90vw;
        max-width: 320px;
        height: auto;
    }
    .financial-card-content {
        min-width: 0;
        width: 90vw;
        max-width: 320px;
        align-items: center;
        text-align: center;
    }
    .financial-card-title {
        font-size: 2rem;
    }
    .financial-title {
        font-size: 2.1rem;
        top: 28px;
    }
    .financial-logo {
        width: 130px;
        right: 18px;
        bottom: 18px;
        left: auto;
        top: auto;
    }
}

/* Dispositivos más grandes, como laptops */
@media (min-width: 769px) {
    /* Puedes agregar estilos adicionales si hace falta */
}