:root {
    --accent-color: #000000;
    --contrast-color: #ffffff;
}

.gradient-gold {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
}

.gradient-gold-light {
    background: linear-gradient(160deg, #ffffff 0%, #fdf7e1 80%, #fcd34d 100%)
}

.hover-scale {
    transition: transform 0.3s ease;

    .gradient-gold-light {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    }
}

.hover-scale:hover {
    transform: scale(1.05);
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coin-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.img-fluid-coin {
    max-width: 80%;
    height: auto;
    margin-top: 10px;
}

/*Whatsapp */
.whatsapp-fixed {
    position: fixed;
    bottom: 65px;
    right: 10px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: block;
}

.whatsapp-fixed img {
    width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 1;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
#       Waves
--------------------------------------------------------------*/

.home .home-waves {
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.home-waves {
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.wave1 use,
.wave2 use,
.wave3 use {
    animation: moveWave 10s ease-in-out infinite;
}

.wave2 use {
    animation-delay: -5s;
    opacity: 0.5;
}

.wave3 use {
    animation-delay: -2s;
    opacity: 0.2;
}

@keyframes moveWave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-160px);
    }
}