.epgtv-cta-section {
    margin-top: 5px !important;
    padding-bottom: 80px !important;
}

.epgtv-cta-box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.epgtv-cta-box:hover {
    background: rgba(255,255,255,0.05);
}

.epgtv-cta-logo {
    width: 180px;
    flex-shrink: 0;
}

.epgtv-cta-logo img {
    width: 100%;
    object-fit: contain;
}

.epgtv-cta-content {
    max-width: 600px;
}

.epgtv-badge {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.epgtv-cta-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.epgtv-cta-content p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .epgtv-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .epgtv-cta-logo {
        width: 140px;
    }
}