/* ===== BOTÕES ===== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--primary-gold);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: #0A0A0A;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button.secondary {
    border: 1px solid rgba(198, 167, 94, 0.3);
    color: var(--text-light);
    margin-left: 1rem;
}

.cta-button.secondary::before {
    background: rgba(198, 167, 94, 0.1);
}

.cta-button.secondary:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

@media (max-width: 768px) {
    .cta-button {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }

    .cta-button.secondary {
        margin-left: 0;
    }
}