/* Desabilitar efeito flip nos botões */
.btn-flip-effect {
    overflow: visible !important;
}

.btn-flip-effect:after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.btn-flip-effect:hover:after {
    display: none !important;
    opacity: 0 !important;
    transform: none !important;
}

.btn-flip-effect__text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.btn-flip-effect:hover .btn-flip-effect__text {
    opacity: 1 !important;
    transform: none !important;
}

/* Garantir que o texto do botão sempre apareça normal */
.btn-flip-effect__slow-effect .btn-flip-effect__text,
.btn-flip-effect__slow-effect:after {
    transition: none !important;
}

/* Remover qualquer data-text duplicado */
[data-text]:after {
    display: none !important;
}

/* Estilo limpo para os botões */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Remover completamente o flip effect */
.btn-flip-effect.btn-primary,
.btn-flip-effect.btn-secondary {
    overflow: hidden !important;
}

.btn-flip-effect.btn-primary:after,
.btn-flip-effect.btn-secondary:after {
    content: "" !important;
    display: none !important;
}