/* CONTENEDOR PRINCIPAL */
.split-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* HEADER SUPERIOR */
.hero-header {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
  color: white;
}

.logo {
  width: 170px;
  margin: auto;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}

.hero-text {
  max-width: 650px;
  font-size: 15px;
  line-height: 1.5;
  opacity: .95;
}

/* PANELES */
.panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.4s ease;
}

/* COLORES */
.lab {
  background: #A3BFF1;
  color: white;
}

.pay {
  background: #25D366;
  color: black;
}

/* EFECTO HOVER */
.lab:hover {
  background: #9cb4dd;
}

.pay:hover {
  background: #15803d;
}

/* CONTENIDO */
.content {
  max-width: 420px;
  padding: 40px;
  transition: transform .3s ease;
}

.panel:hover .content {
  transform: scale(1.05);
}

/* TITULO PRODUCTO */
.title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* BOTONES */
.btn-lab {
  background: white;
  color: #2563eb;
  padding: 12px 28px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: bold;
  transition: all .3s ease;
}

.btn-pay {
  background: white;
  color: #16a34a;
  padding: 12px 28px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: bold;
  transition: all .3s ease;
}

/* EFECTO BOTONES */
.btn-lab:hover,
.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* LINEA RASGADA CENTRAL */
.tear-line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 80px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}

.tear-line path {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.3));
}

.logo {
  width: 25%;
  height: auto;
}

/* --- ADAPTACIÓN MÓVIL --- */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
    height: auto;
  }

  .panel {
    width: 100%;
    min-height: 50vh;
  }

  .hero-header {
    top: 20px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-text {
    font-size: 14px;
    max-width: 90%;
  }

  .logo {
    width: 40%;
    margin-bottom: 8px;
  }

  .text-9xl {
    font-size: 6rem;
  }

  .text-6xl {
    font-size: 3rem;
  }

  .btn-pay {
    padding: 10px 20px;
    font-size: 14px;
  }

  .tear-line {
    display: none;
  }

  .content {
    padding: 20px;
  }

  .btn-lab,
  .btn-pay {
    width: 80%;
    max-width: 250px;
  }

  .max-w-140 {
  max-width: 120px; /* o 140px según necesites */
}

  .bg-white p-1 img {
    width: 80px;
    height: 80px;
  }

  .text-9xl {
    font-size: 5rem;
  }
}