
            /* Estilos do CTA Tags Afiliados */
            .cta-single-container {
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                border: 1px solid #dee2e6;
                border-radius: 12px;
                padding: 30px;
                margin: 40px 0;
                box-shadow: 0 4px 15px rgba(0,0,0,0.05);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                overflow: hidden;
            }
            .cta-single-container:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            }
            .cta-single-container.cta-with-image {
                display: flex;
                gap: 30px;
                align-items: center;
            }
            .cta-image-wrapper {
                flex: 0 0 250px;
                max-width: 250px;
            }
            .cta-image {
                width: 100%;
                height: auto;
                border-radius: 8px;
                display: block;
            }
            .cta-content-wrapper {
                flex: 1;
            }
            .cta-title {
                font-size: 24px;
                font-weight: 700;
                margin: 0 0 10px 0 !important;
                line-height: 1.2;
            }
            .cta-description {
                font-size: 16px;
                margin-bottom: 20px !important;
                color: #555;
            }
            .cta-button {
                display: inline-block;
                padding: 12px 30px;
                color: #fff !important;
                text-decoration: none !important;
                border-radius: 50px;
                font-weight: 600;
                transition: opacity 0.3s;
                text-align: center;
            }
            .cta-button:hover {
                opacity: 0.9;
            }
            
            /* Responsivo */
            @media (max-width: 768px) {
                .cta-single-container.cta-with-image {
                    flex-direction: column;
                    text-align: center;
                }
                .cta-image-wrapper {
                    max-width: 100%;
                    flex: none;
                }
                .cta-image {
                    max-height: 200px;
                    object-fit: cover;
                }
            }
        