/* ===== CTAs ESTRATÉGICOS PARA CONVERSÃO ===== */

/* CTA Inline - após seções */
.cta-inline {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--warm-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inline::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inline-alt {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 100%);
}

.cta-inline-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-inline h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-inline p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-inline .btn-large {
    background: white;
    color: var(--primary-teal);
    font-size: 1.2rem;
    padding: 20px 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-inline .btn-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* CTA dentro da seção diferença */
.diferenca-cta {
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
    padding: 60px 48px;
    border-radius: 24px;
    text-align: center;
    border: 3px solid var(--accent-warm);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.diferenca-cta h3 {
    color: var(--primary-teal);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.diferenca-cta p {
    color: var(--text-medium);
    font-size: 1.15rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* CTA Sticky flutuante */
.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.2);
    z-index: 9999;
    transform: translateY(100%);
    animation: slideUp 0.6s ease forwards 2s;
    padding: 20px 0;
}

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

.cta-sticky-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-sticky-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.cta-sticky-text strong {
    font-size: 1.25rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.cta-sticky-text span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-sticky .btn {
    background: white;
    color: var(--primary-teal);
    padding: 16px 32px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.cta-sticky-close {
    position: absolute;
    top: 8px;
    right: 16px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.cta-sticky-close:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Melhorias nos botões CTA existentes */
.btn-primary span {
    position: relative;
}

.btn-primary:hover span::after {
    content: ' →';
    margin-left: 4px;
}

/* Urgência visual nos CTAs */
.cta-inline::after {
    content: '⏰ Vagas Limitadas';
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 968px) {
    .cta-inline {
        padding: 60px 0;
    }
    
    .cta-inline h3 {
        font-size: 1.8rem;
    }
    
    .cta-inline p {
        font-size: 1.1rem;
    }
    
    .cta-inline::after {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .cta-sticky-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .cta-sticky-text {
        align-items: center;
    }
    
    .cta-sticky .btn {
        width: 100%;
    }
    
    .diferenca-cta {
        padding: 40px 24px;
    }
    
    .diferenca-cta h3 {
        font-size: 1.5rem;
    }
}

/* Animação de pulso no sticky CTA */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-sticky .btn {
    animation: pulse 2s infinite;
}

.cta-sticky .btn:hover {
    animation: none;
}

/* Badge de urgência */
.urgency-badge {
    display: inline-block;
    background: #ff4444;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    animation: pulse 2s infinite;
}
