/* Fix CTA Sticky - Com texto */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--warm-dark) 100%);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    animation: slideUp 0.6s ease forwards 3s;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.cta-sticky-content {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 50px 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
}

.cta-sticky-text {
    display: flex;
    flex-direction: column;
    color: white;
    flex: 1;
    min-width: 0;
}

.cta-sticky-text strong {
    font-size: 0.9rem;
    margin-bottom: 2px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-sticky-text span {
    font-size: 0.75rem;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-sticky .btn {
    background: white;
    color: var(--primary-teal);
    padding: 12px 20px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.cta-sticky .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-sticky-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition-fast);
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

.cta-sticky-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Tablet */
@media (min-width: 600px) and (max-width: 968px) {
    .cta-sticky-content {
        padding: 14px 60px 14px 24px;
    }
    
    .cta-sticky-text strong {
        font-size: 1rem;
    }
    
    .cta-sticky-text span {
        font-size: 0.8rem;
    }
    
    .cta-sticky .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .cta-sticky-close {
        right: 12px;
    }
}

/* Desktop */
@media (min-width: 969px) {
    .cta-sticky-content {
        max-width: 1280px;
        padding: 20px 40px;
    }
    
    .cta-sticky-text strong {
        font-size: 1.15rem;
        margin-bottom: 4px;
    }
    
    .cta-sticky-text span {
        font-size: 0.9rem;
    }
    
    .cta-sticky .btn {
        padding: 16px 32px;
        font-size: 1rem;
        animation: pulse 2s infinite;
    }
    
    .cta-sticky .btn:hover {
        animation: none;
    }
    
    .cta-sticky-close {
        top: 8px;
        right: 16px;
        transform: none;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }
    
    .cta-sticky-close:hover {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
