@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.font-montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    scroll-behavior: smooth;
    user-select: none;
}

#content {
    transition: opacity 0.25s ease;
}

.hero {
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero img.background {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    top: 0;
    left: 0;
}

.hero>div.container {
    position: relative;
    z-index: 10;
}

.hero>div.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    z-index: 2;
}

.logo {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    height: 100px;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.5s ease;
}

.logo.scrolled {
    background-color: rgba(20, 20, 20, 0.8);
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: green;
    z-index: 9999;
    transition: width 5s;
}

/* presença */

.box {
    position: relative;
    z-index: 20;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.table-confirmacoes tr {
    height: 2rem;
}

.gift-sold {
    overflow: hidden;
}

.gift-sold h3 {
    text-decoration: line-through;
}

.gift-sold span {
    text-decoration: line-through;
    color: gray;
}

.gift-sold:hover {
    background-color: transparent;
}

.gift-sold .btn-presentear {
    background-color: #D9AA8E;
    color: #000;
}

.gift-sold::after {
    content: "Já presenteado";
    position: absolute;
    inset: 0;
    height: 100%;
    line-height: 50px;
    width: 100%;
    background-color: #f0f0f0a8;
    font-weight: bold;
    transform-origin: 90% 110%;
    text-align: center;
    line-height: 20rem;
    font-size: 1rem;
    text-wrap: nowrap;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
}


#chronometer {
    position: fixed;
    bottom: 1rem;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 5rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#chronometer > div {
    width: max-content;
    height: 100%;
    padding: 0 1rem;

}

#chronometer .split {
    width: 1px;
    height: 1.5rem;
    background-color: #fff;
    position: relative;
    top: 2.5rem;
    transform: translateY(-50%);
}

#preload-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    /* animation: pulse 1.5s ease-in-out infinite; */
    animation: shadowPulse 3s ease-in-out infinite;
    border-radius: 50%;
    padding: 20px;
}

.preload-logo {
    width: 120px;
    height: auto;
}

@keyframes shadowPulse {
    0% {
        filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.0));
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.5));
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.0));
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0% {}

    50% {}

    100% {}
}