.bold-custom {
    font-family: GothamRndBold;
    font-weight: 800;
}

:root {
    --black-c: #000;
    --green-c: #94dc00;
    --white-c: #fff;
}

.popup-land-page {
    align-items: center;
    background: rgba(0, 0, 0, .6);
    display: none;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 9999;
}

.popup-land-page.is-active {
    display: flex;
}

.container-pop {
    background: #fff;
    color: var(--black-c);
    padding: 15px;
    width: 30vw;
}

.content-pop-land {
    height: auto;
    padding: 15px 20px;
}

img.img-pop-land {
    height: auto;
    width: 80%;
}

/* Reset */
.btn-c-theme,
.btn-x {
    background-color: transparent;
    border-radius: 100%;
    border: none;
    color: #a1a1a1;
    font-size: 1.2rem;
}

.btn-c-theme:hover,
.btn-x:hover {
    background-color: #d1d1d1;
    color: #414141;
}

/* Btn Animado  */
.btn-popup {
    align-items: center;
    background: var(--green-c);
    border: 0 solid transparent;
    border-radius: 100%;
    color: var(--black-c);
    cursor: pointer;
    display: flex;
    height: 6.2rem;
    justify-content: center;
    margin-top: 1rem;
    overflow: hidden !important;
    padding: 1rem;
    position: relative;
    text-align: center;
    transition: all .3s ease-in-out;
    width: 6.2rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}


.btn-popup:hover {
    border: 4px solid var(--black-c);
    border-right-style: dotted;
    color: var(--black-c) !important;
    font-size: .9rem;
    transform: scale(1.2);
}

.btn-popup::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: var(--black-c);
    position: absolute;
    left: 0%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -webkit-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-popup::after {
    background: var(--white-c);
    content: '';
    display: block;
    height: 100%;
    left: 0%;
    opacity: 1;
    position: absolute;
    top: 0;
    transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    width: 100%;
    z-index: -15;
    -webkit-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-popup:hover::before {
    opacity: 1;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
}

.btn-popup:hover::after {
    opacity: 1;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
}

/* CAMBIO TOTAL */
/* container */
.container-pop.change {
    background-color: #18181b;
    color: var(--white-c);
    transition: all .3s ease-in-out;
}

/* btn primary */
.btn-popup.change {
    color: var(--white-c);
}

.btn-popup.change:hover {
    border: 4px solid var(--white-c);
    border-right-style: dotted;
    color: var(--white-c) !important;
}

/* btn up */
.btn-c-theme.change:hover,
.btn-x.change:hover {
    background-color: #616161;
    color: var(--white-c);
    transition: all .3s ease-in-out;
}

.img-pop-ec {
    width: 300px;
    height: auto;
}

@media (max-width: 768px) {
    .container-pop {
        width: 85vw;
    }
}

@media (max-width: 576px) {
    .container-pop {
        width: 95vw;
    }
}