
.ch-banner {
  position: relative;
  height: 100vh;
  width: 100%;

  overflow: hidden;
  background-color: #000;
}

.ch-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.ch-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: auto;
  padding: 40px 30px;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  /* sin background ni sombra */
}

.ch-content h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f8e058;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.ch-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.ch-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-bottom: 1px solid rgb(255, 255, 255);
  padding-bottom: 3px;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.ch-button .icon {
  font-size: 16px;
  transform: translateY(-1px);
}

.ch-button:hover {
  color: #ffda09;
  border-color: #fffb0c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ch-content {
    max-width: 90%;
    padding: 20px;
  }

  .ch-content h1 {
    font-size: 28px;
  }

  .ch-content p {
    font-size: 14px;
  }

  .ch-button {
    font-size: 13px;
  }
}


     