.bck-orange {
    background-color: var(--primary-orange);
}

.bck-orange:hover {
    background-color: var(--secondary-orange);
}

.color-green {
    color: var(--primary-green);
}

.bck-green {
    background-color: var(--primary-green);
}

.bck-secondary-green {
    background-color: var(--secondary-green);
}

.bck-secondary-green:hover {
    background-color: rgb(14, 109, 14);
}

.color-secondary-green {
    color: var(--secondary-green);
}

.color-yellow {
    color: var(--primary-yellow);
}

.bck-yellow {
    background-color: var(--primary-yellow);
}


.bg-orange {
    background-color: var(--primary-orange);
}

.bg-yellow {
    background-color: var(--primary-yellow);
}

.bg-green {
    background-color: var(--secondary-green);
}

.bg-blue {
    background-color: var(--primary-blue);
}

.bck-yellow:hover {
    background-color: var(--secondary-yellow);
}

.color-orange {
    color: var(--primary-orange);
}

.fs-7 {
    font-size: 1.1em;
}

.mgtop-100 {
    margin-top: 100px;
}

.lh {
    line-height: 1.4;
}

.hover-zoom {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;

    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* HEROSECTION */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.hero-file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.375);
    z-index: 2;
}

.hero-overlay-noimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.007);
    z-index: 2;
}

.hero-title-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 4;
}

.hero-title {
    font-size: 6em;
    font-weight: bolder;
}

/* FIM HEROSECTION */



/* HOVER EM CIMA IMAGE */
.onda-verde {
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.item-card:hover .onda-verde {
    transform: translateY(0%);
}




@media (max-width: 992px) {

    .hero-title {
        font-size: 3em;
        font-weight: bolder;
    }

}