/* ========================================
   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: "Montserrat", 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: all 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: #f6f6f6;
    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: #d1d1d1;
    border: 1px solid #333;
}

.ef-btn--dark:hover {
    background-color: #2a2a2a;
    color: #fff;
    border-color: #555;
}

/* 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: linear-gradient(90deg, #F9F295 0%, #F3D97A 20%, #EBC15A 40%, #E1AC41 50%, #EBC15A 60%, #F3D97A 80%, #F9F295 100%);
    background-size: 200% auto;
    color: #000;
    transition: all 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(225, 172, 65, 0.4);
}


/* Preto sólido */
.ef-btn--black {
    background: #000000;
    color: #ffffff !important;
}

.ef-btn--black:hover {
    background: #1a1a1ae7;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(26, 26, 26, 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;
}