/* --- BASE (Para ambos) --- */
.banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.img-fullscreen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- ESTILOS SOLO PARA PC --- */
@media (min-width: 768px) {
  .banner-text-wrapper,
  .overlay-dark {
    display: none !important;
  }
}

/* --- ESTILOS SOLO PARA MÓVIL --- */
@media (max-width: 767px) {
  /* 1. Capa oscura */
  .overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
  }

  /* 2. Contenedor de texto */
  .banner-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding-top: 15vh; /* Ajustable */
    padding-left: 30px;
    padding-right: 30px;
  }

  /* 3. Estilo PRINCIPAL ("Líderes") */
  .banner-text-wrapper h1 {
    color: white;
    font-family: "Montserrat", sans-serif;

    /* AHORA SÍ PUEDES AJUSTAR A DETALLE: */
    /* 500 = Medium (Lo sentías delgado) */
    /* 600 = SemiBold (El estándar fuerte sin ser tosco) */
    /* 700 = Bold (Muy gordo) */

    /* Intenta con 600 primero, es el "fuerte elegante" */
    font-weight: 600;

    /* O si quieres algo muy específico con la fuente variable: */
    /* font-variation-settings: 'wght' 550; */

    text-transform: none;
    text-align: left;
    font-size: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin: 0;
  }

  /* 4. Estilo DELGADO ("en plusvalía...") */
  .banner-text-wrapper h1 .texto-delgado {
    font-family: "Montserrat", sans-serif;

    /* AQUÍ ESTÁ LA MAGIA: 200 o 300 es lo que la hace ver fina */
    font-weight: 500;

    /* Mantenemos el blanco puro o le damos ligera transparencia */
    color: rgba(255, 255, 255, 0.95);

    /* El tamaño en 'em' es relativo al h1 padre. 0.9em es 90% del tamaño de "Líderes" */
    font-size: 0.9em;
  }
}
