.btn-conllab {
    background: linear-gradient(95deg, #7c3aed 0%, #5f25c8 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1.13rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.22s, box-shadow 0.2s;
    box-shadow: 0 2px 14px #7c3aed30;
    cursor: pointer;
	transition: all 0.22s;
}
.btn-conllab:hover,
.btn-conllab:focus {
    background: linear-gradient(95deg, #5f25c8 0%, #7c3aed 100%);
    color: #fff !important;
    text-decoration: none;
	transition: all 0.22s;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #20bb41;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.06rem;
    text-decoration: none;
    transition: background 0.22s;
    box-shadow: 0 2px 12px #20bb4130;
    cursor: pointer;
	transition: all 0.22s;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: #179532;
    color: #fff !important;
    text-decoration: none;
	transition: all 0.22s;
}

@media (max-width: 480px) {
    .btn-conllab, .btn-whatsapp {
        padding: 10px 14px;
        font-size: 0.97rem;
    }
}

/* Contador Regressivo - Estilos Globais */
.countdown-timer {
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px !important;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 4.5rem !important;
    font-weight: bold;
    color: #8B5CF6;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Estilos específicos para a página sign-up */
.countdown-timer-demo .countdown-number {
    color: #fff !important;
    background: linear-gradient(135deg, #fff, #f0f9ff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3) !important;
    font-size: 2.2rem !important;
}

.countdown-timer-demo .countdown-label {
    color: #fff !important;
    opacity: 0.8 !important;
}

.countdown-timer-demo .countdown-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive para contador */
@media (max-width: 768px) {
    .countdown-container {
        gap: 15px !important;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 3rem !important;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 10px !important;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 2rem !important;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

.bg-conllab {
    background-color: #6c47c2;
    color: #fff;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    z-index: 9999;
    width: 100%;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 -2px 20px #6c47c233 !important;
    transition: all 0.3s ease;
    transform: translateY(100%);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-bottom {
    bottom: 0;
    left: 0;
}

.cookie-consent-top {
    top: 0;
    left: 0;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 20px;
}

.cookie-consent-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-consent-link {
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
    transition: opacity 0.2s;
}

.cookie-consent-link:hover {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

.cookie-consent-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 80px;
}

.cookie-consent-accept {
    background: #20bb41;
    color: #fff;
}

.cookie-consent-accept:hover {
    background: #179532;
    transform: translateY(-1px);
}

.cookie-consent-decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Tema Conllab - Fundo roxo */
.cookie-consent {
    background: linear-gradient(135deg, #ed3adeee, #472f7fee );
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-consent-btn {
        width: 100%;
        min-width: auto;
    }
    
    .cookie-consent-message {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-container {
        padding: 0 15px;
    }
    
    .cookie-consent-content {
        padding: 15px 0;
    }
    
    .cookie-consent-message {
        font-size: 12px;
    }
    
    .cookie-consent-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}