
  /* HERO SECTION */
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #000080, #5A5A95); /* Fondo degradado azul */
    padding: 2rem 5%;
    min-height: 80vh;
    box-sizing: border-box;
    width: 100%; /* El fondo azul cubre todo el ancho */
  }

  .hero-container {
    display: flex;
    flex-direction: row; /* Disposición en fila por defecto */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px; /* Limita el ancho máximo del contenido */
    margin: 0 auto; /* Centra el contenido */
  }

  .hero-content {
    max-width: 600px;
    color: var(--blanco);
    flex: 1; /* Permite que el texto crezca más en comparación con la imagen */
    padding-right: 2rem; /* Añade espacio entre el texto y el celular */
  }

  .hero-content h1 {
    font-size: 3.1rem;
    font-weight: bold;
    margin-bottom: 1.1rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1.6rem;
  }

  .btn {
    display: inline-block;
    background-color: var(--dorado);
    color: var(--azul-oscuro);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .btn:hover {
    transform: scale(1.05);
    background-color: var(--azul-oscuro);
    color: var(--blanco);
  }

  /* Simulación del Celular */
  .hero-image {
    position: relative;
    width: 260px;
    height: 485px;
    background-color: #000; /* Fondo negro del celular */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 8px solid #333; /* Borde negro del celular */
  }

  .hero-image::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #555; /* Detalle en la parte superior del celular */
    border-radius: 10px;
    z-index: 2;
  }

  /* Estilo del Video */
  .phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .custom-video-hero {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta el video dentro del contenedor */
    border: none;
    display: block;
  }

  /* Estilo del mensaje */
  .video-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 3;
    text-align: center;
  }

  /* RESPONSIVO */
  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column; /* Cambia la dirección de los elementos a columna */
      text-align: center;
      padding: 1.5rem;
    }

    .video-message
    {
      font-size: 1.2rem;
    }

    .hero-container {
      flex-direction: column; /* Los elementos se dispondrán en columna */
      align-items: center; /* Centra los elementos */
    }

    .hero-content {
      padding: 0; /* Elimina padding lateral */
      max-width: 100%; /* Permite que el texto ocupe todo el ancho */
      text-align: center;
    }

    .hero-content h1 {
      font-size: 2rem;
      margin-top: 25px;
      margin-bottom: 30px;
    }

    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 1.4rem;
    }

    .hero-image {
      margin-top: 1.5rem;
      width: 180px;
      height: 340px;
    }

    .hero-section {
      min-height: 60vh;
    }

    .hero-image {
      width: 90%;
      max-width: 180px;
    }
  }
