/* Container 22 - Destaque e Engaje */
.container-22 {
    background: #000000;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.destaque-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Title Section */
.destaque-title-section {
    margin-bottom: 60px;
}

.destaque-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff6b9d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Main Image Section */
.destaque-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.destaque-main-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destaque-main-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}


/* CTA Section */
.destaque-cta-section {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 4;
}

.destaque-cta-button {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 280px;
    max-width: 320px;
    margin: 0 auto;
}

.destaque-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.8);
    background: linear-gradient(45deg, #ff5a8a, #ff7ba7);
}

.destaque-cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.button-line-1,
.button-line-2 {
    display: block;
    line-height: 1.2;
}

/* Responsive Design for Container 22 */
@media (max-width: 768px) {
    .container-22 {
        padding: 60px 15px;
    }
    
    .destaque-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .destaque-image-section {
        margin-bottom: 40px;
    }
    
    .destaque-main-img {
        max-height: 600px;
        border-radius: 15px;
    }
    
    
    .destaque-cta-button {
        padding: 16px 30px;
        font-size: 1rem;
        min-width: 250px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .container-22 {
        padding: 40px 10px;
    }
    
    .destaque-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .destaque-image-section {
        margin-bottom: 30px;
    }
    
    .destaque-main-img {
        max-height: 500px;
        border-radius: 12px;
    }
    
    
    .destaque-cta-button {
        padding: 14px 25px;
        font-size: 0.9rem;
        min-width: 220px;
        max-width: 250px;
        letter-spacing: 1px;
    }
}
