  .seccion-video-texto {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding-top: 10px;
      padding-bottom: 10px;
      background: #ffffff;
      /* Por si el video no cubre todo */
      overflow: hidden;
  }

  .contenedor-video {
      flex: 1;
      max-width: 50%;
  }

  .contenedor-video video {
      width: 40%;
      height: auto;
      display: block;
  }


  .animado {
      font-size: 2.5rem;
      opacity: 0;
      transform: translateY(50px);
      animation: aparecer 1.2s ease-out forwards;
      animation-delay: 0.5s;
      color: #767676;
  }


  .network {
      font-size: 2.5rem;
      opacity: 0;
      transform: translateY(50px);
      animation: aparecer 1.2s ease-out forwards;
      animation-delay: 0.5s;
      color: #767676;
      margin-top: 20px;
  }

  @keyframes aparecer {
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .seccion-video-texto {
      display: flex;
      flex-direction: row;
      min-height: 9vh;
      color: #051624;
      font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
      transition: opacity .6s ease;
  }

  .columna {
      flex: 1;
      padding: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .columna-video video {
      width: 50%;
      height: auto;
      border-radius: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
  }

  /* Efecto al pasar el mouse */
  .columna-video video:hover {
      transform: scale(1.05);

  }

  /* Efecto al hacer click */
  .columna-video video:active {
      transform: scale(0.95);
  }


  .columna-texto {
      flex-direction: column;
      text-align: left;
      align-items: flex-start;
      color: #051624;
      justify-content: flex-start;
      padding-left: 1rem;
      padding-right: 0;
  }


  .animado {
      font-size: 2.5rem;
      opacity: 0;
      transform: translateY(50px);
      animation: aparecer 1.2s ease-out forwards;
      animation-delay: 0.5s;
      margin-bottom: -1.6rem;
      color: #051624;
  }

  .network {
      font-size: 1.3rem;
      color: #051624;
      opacity: 0;
      transform: translateY(40px);
      animation: aparecer 1s ease-out forwards;
      animation-delay: 0.9s;
      margin-bottom: 0.37em;
  }

  .descripcion {
      font-size: 1rem;
      max-width: 80%;
      opacity: 0;
      transform: translateY(40px);
      animation: aparecer 1s ease-out forwards;
      animation-delay: 0.6s;
      font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
      font-optical-sizing: auto;
      font-style: normal;
      letter-spacing: 0.015em;
      color: #051624;
      text-align: left;


  }

  .texto-bluelife {
      font-size: 1rem;
      font-weight: 300;
      max-width: 80%;
      opacity: 0;
      transform: translateY(40px);
      letter-spacing: 0.025em;
      animation: aparecer 1s ease-out forwards;
      animation-delay: 0.6s;
      color: #051624;
      font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
      font-optical-sizing: auto;
      font-style: normal;
      font-variation-settings:
          "wdth" 100;
      /* Elimina espacio extra arriba */
  }

  @media (max-width: 500px) {
      .seccion-video-texto {
          flex-direction: column;
          min-height: auto;
          padding: 3rem 1rem;
          background: #ffffff;
      }

      .columna {
          flex: none;
          padding: 1rem 0;
          width: 100%;
          justify-content: center;
          align-items: center;
          text-align: center;
      }

      .columna-video video {
          width: 40%;
          height: auto;
          border-radius: 0.8rem;
      }

      .columna-texto {
          align-items: left;
          justify-content: left;
          text-align: left;
      }

      .animado {
          display: none;
      }

      .network {
          display: none;
      }

      .descripcion {
          max-width: 80%;
          text-align: left;
          margin-bottom: 1%;
          color: #031e3c;
          display: none;
      }

      .texto-bluelife {
          max-width: 85%;
          font-size: 1rem;
          font-weight: 300;
          /* seminegrita */
          margin-bottom: .4rem;
          color: #031e3c;
          line-height: 1.1;
          text-align: center;

      }

  }