/* ========================================
   GLOBAL - BUTTONS
======================================== */

.ef-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px 32px;
    border-radius: 9999px;
    box-sizing: border-box;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    /* Consistent with original */
    font-weight: 700;
    /* Adjusted to match original button font-weight */
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
    align-content: center;
}

/* Branco */
.ef-btn--white {
    background: #ffffff;
    color: #000000 !important;
}

.ef-story-page--bahamas,
.ef-story-page--nevis,
.ef-story-page--usa {
    background: #ffffff;
}

.ef-btn--white:hover {
    background: #fff;
    color: #000000 !important;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

/* Escuro */
.ef-btn--dark {
    background-color: var(--btn-dark);
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.ef-btn--dark:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.38);
}

/* Dourado */
.ef-btn--gold {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.25);
    display: inline-block;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: var(--ef-gold-effect);
    background-size: 200% auto;
    color: #000;
    transition: background-position 0.4s cubic-bezier(.165, .84, .44, 1), box-shadow 0.4s cubic-bezier(.165, .84, .44, 1), transform 0.4s cubic-bezier(.165, .84, .44, 1);
    position: relative;
    overflow: hidden;
}


.ef-btn--gold:hover {
    background-position: right center;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(var(--ef-gold-rgb), 0.4);
}


/* Preto sólido */
.ef-btn--black {
    background: #000000;
    color: #ffffff !important;
}

.ef-btn--black:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}


/* Tamanhos */
.ef-btn--sm {
    min-height: 46px;
    padding: 0 28px;
    font-size: 15px;
}

.ef-btn--lg {
    min-height: 58px;
    padding: 0 42px;
    font-size: 17px;
}

.ef-btn--full {
    width: 100%;
}

.ef-btn {
    will-change: transform;
    backface-visibility: hidden;
}
