.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 200px;
    text-align: center;
}

.hero-cta-primary {
    background-color: #b68e22;
    color: #ffffff;
    border: 2px solid #b68e22;
}

.hero-cta-primary:hover {
    background-color: transparent;
    color: #00247d;
    border-color: #b68e22;
}

/* Botões secundários */
.hero-cta-secondary {
    background-color: #b68e22;
    color: #ffffff;
    border: 2px solid #b68e22;
}

.hero-cta-secondary:hover {
    background-color: transparent;
    color: #00247d;
    border-color: #b68e22;
}