#wpab-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    background: #000;
}

#wpab-banner-video,
.wpab-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpab-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wpab-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 20px;
}

.wpab-title {
    font-size: 2.5rem;
    margin: 0;
}

.wpab-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 20px;
}

.wpab-button {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.wpab-button:hover {
    background: #e65c00;
}

/* Responsivo */
@media (max-width: 768px) {
    #wpab-banner-container {
        height: 45vh !important;
    }
    .wpab-title {
        font-size: 1.8rem;
    }
    .wpab-subtitle {
        font-size: 1rem;
    }
    .wpab-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Ocultar texto en móviles (opcional) */
@media (max-width: 768px) {
  .wpab-hide-text-mobile {
    display: none !important;
  }
}