/* ... existing code ... */

/* VSL Container (Video Sales Letter) */
.vsl-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 20;
}

.vsl-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border-radius: var(--radius-lg);
    border: 1px solid var(--text-muted);
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
}

.vsl-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--red-danger);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
    padding-left: 5px; /* Visual adjustment */
    margin-bottom: var(--spacing-md);
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 0 10px rgba(220, 20, 60, 0.3);
}

.vsl-overlay p {
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Ajuste do Hero para acomodar o VSL */
.offer-hero {
    height: auto;
    max-height: none;
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(to bottom, rgba(10,11,10,0.8), var(--bg-dark)), url('../img/3.webp');
    background-size: cover;
    background-position: center;
}

.offer-hero-content {
    position: relative;
    bottom: auto;
    padding-top: var(--spacing-lg);
}

