.renacer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    border: 3px solid #2d2926; 
    border-color: var(--premium-dark);
    border-radius: 999px;
    background: transparent;
    color: #2d2926;
    color: var(--premium-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.renacer-btn:hover {
    background: #2d2926;
    background: var(--premium-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.renacer-btn.btn-light {
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.renacer-btn.btn-light:hover {
    background: #ffffff !important;
    color: #2d2926 !important;
    color: var(--premium-dark) !important;
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}