  /* Importamos la fuente Ubuntu desde Google Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

  /* --- FONDO BLANCO CON SUTIL DESTELLO --- */
  html, body {
    max-width: 100vw;
    width: 100%;
    min-height: 100vh;
  /*  overflow-x: hidden; */
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    /* Fondo principal con el suave destello cyan a la izquierda como en la imagen */
    background: radial-gradient(circle at left center, #e6f7ff 0%, #ffffff 40%);
    position: relative;
    z-index: 0;
  }

  /* --- CAPA 1: IMAGEN VECTORIAL GLOBAL --- */
 .ticketera-bg-vectorial {
    position: fixed;
    top: 0;
    /* left: 74px; */
    width: 100vw;
    height: 100vh;
    background-image: url(https://zeuserp.tech/wp-content/themes/zeus-2023/assets/ticketera/mesa-de-servicio/vectorial.png);
    background-repeat: no-repeat;
    /* background-position: center center; */
    background-size: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

  /* --- CONTENEDOR PRINCIPAL QUE CENTRA TODO --- */
  .ticketera-wrapper {
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto;
    box-sizing: border-box;
 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; 
    position: relative;
  }
   
  /* --- HEADER (Logo) --- */
  .ticketera-header {
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
    position: relative;
    z-index: 2; /* Capa 2: Por encima de las ondas */
  }

  .ticketera-logo-img {
    height: 45px; 
    object-fit: contain;
    display: inline-block;
        margin-top: 8px;
  }

  /* --- RECUADRO PRINCIPAL DEGRADADO --- */
  .ticketera-main-card {
    width: 100%;
    max-width: 1183px;
    padding: 50px 60px 0 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 46px;
    position: relative;
    z-index: auto;
    height: 450px;
    border-radius: 115px;
    background: linear-gradient(182deg, #6A00A7 -1.96%, #00CDCD 241.18%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

  /* --- FILA SUPERIOR (Icono + Título) --- */
 .ticketera-top-row {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 94px;
    position: relative;
    z-index: 2;
    margin-right: 82px;
}

  .ticketera-icon {
    width: 350px;
    height: auto;
    flex-shrink: 0;
    margin-top: -50px;
}
 .ticketera-title {
    font-weight: 700;
    margin: 0;
    text-align: left;
    color: #FFF;
    font-family: Ubuntu;
    font-size: 44px;
    font-style: normal;
    line-height: 55px;
}

  /* --- FILA INFERIOR (Mockup + Tarjeta Blanca) --- */
  .ticketera-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: -50px; /* Baja toda la fila para que sobresalga del borde inferior morado */
    position: relative; 
    z-index: 2; /* Capa 2: Por encima de las ondas */
  }

 
   .ticketera-mockup-img {
    width: 74%;
    height: auto;
    object-fit: contain;
    margin-left: -180px;
    margin-top: -255px;
    transform: translateY(10px);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
    z-index: 6;
}


 .ticketera-info-card
 {
    background: #FFFFFF;
    border-radius: 0px 62px 62px 0px;
    padding: 20px 49px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-10px);
    margin-top: -170px;
    margin-left: -221px;
    margin-right: 68px;
    z-index: 4;
}

  .ticketera-info-text {
    color: #002955;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-align: left;
  }

  /* --- FOOTER (Texto + Botón) --- */
  .ticketera-footer {
    text-align: center;
    margin-top: 15px; /* Espacio extra para compensar el desborde del mockup */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 0px;
    position: relative;
    z-index: 2; /* Capa 2: Por encima de las ondas */
  }

  .ticketera-footer-text {
    color: #002955;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    max-width: 700px;
    text-align: center;
    font-family: Ubuntu;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.24px;
}

  .ticketera-footer-text strong {
    font-weight: 700;
  }

  .ticketera-login-btn {
    background: #002955;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 50px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    /* Resplandor cyan idéntico al diseño enviado */
    box-shadow: 0 8px 25px rgba(0, 205, 205, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .ticketera-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 205, 205, 0.6);
    background: #001f40;
  }

  /* --- RESPONSIVE MOBILE --- */
  @media (max-width: 950px) {
      
        html, body {
    max-width: 100vw;
    width: 100%;
    min-height: 100vh;
 overflow-x: hidden; 
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    /* Fondo principal con el suave destello cyan a la izquierda como en la imagen */
    background: radial-gradient(circle at left center, #e6f7ff 0%, #ffffff 40%);
    position: relative;
    z-index: 0;
  }
      
      
    .ticketera-wrapper {
      padding: 20px 15px;
    }

    .ticketera-main-card {
      padding: 40px 30px 0 30px;
      border-radius: 40px;
      gap: 42px;
      height: 478px;
    }

    .ticketera-top-row {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }

    .ticketera-icon {
    width: 255px;
        margin-top: 10px;
    }

    .ticketera-title {
          font-size: 30px;
        text-align: center;
        margin-top: -65px;
        line-height: 33px;
    }

    .ticketera-bottom-row {
      flex-direction: column-reverse; 
      gap: 30px;
      margin-bottom: 0;
    }

       .ticketera-mockup-img{
        width: 148%;
        /* max-width: 100%; */
        margin-left: 0;
        transform: translateY(0);
        margin-bottom: -283px;
            margin-top: 16px;
    }

    .ticketera-info-card {
      width: 100%;
      padding: 25px;
      text-align: center;
      transform: translateY(0);
    
    background: #FFFFFF;
    border-radius: 0px 62px 62px 0px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -19px;
     margin-left: 0px;
    margin-right: 68px;
    z-index: 4;
}
    

    .ticketera-info-text {
      font-size: 20px;
      text-align: center;
    }

    .ticketera-footer {
              margin-top: 265px;
    }

    .ticketera-footer-text {
      font-size: 18px;
    }
    
    .ticketera-top-row {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 78px;
    position: relative;
    z-index: 2;
    margin-right: 0px;
}
    
  }