:root {
    --cor-abismo: #0E1D35;
    --cor-gelo: #91CDF0;
    --cor-nevoa: #D2DCE1;
    --cor-cristal: #E9E9E4;
    --cor-pulso: #9B111E;
    --cor-fenda: #F7630D;
}

section[id] {
    scroll-margin-top: 80px;
}

/* ==========================================================================
  PRELOAD ANIMATION
  ========================================================================== */

#loading {
    background-color: var(--cor-abismo);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    z-index: 99999999;
    opacity: 0.7;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 60px;
    width: 60px;
    margin-top: -30px;
    margin-left: -30px;
    -webkit-animation: loading-center-absolute 1s infinite;
    animation: loading-center-absolute 1s infinite;
}

.object {
    width: 20px;
    height: 20px;
    background-color: var(--cor-gelo);
    float: left;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    margin-right: 20px;
    margin-bottom: 20px;
}

.orange-red-loading .object {
    background-color: var(--cor-pulso);
}

.object:nth-child(2n+0) {
    margin-right: 0px;
}

#object_one {
    -webkit-animation: object_one 1s infinite;
    animation: object_one 1s infinite;
}

#object_two {
    -webkit-animation: object_two 1s infinite;
    animation: object_two 1s infinite;
}

#object_three {
    -webkit-animation: object_three 1s infinite;
    animation: object_three 1s infinite;
}

#object_four {
    -webkit-animation: object_four 1s infinite;
    animation: object_four 1s infinite;
}

@-webkit-keyframes loading-center-absolute {
    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading-center-absolute {
    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes object_one {
    50% {
        -ms-transform: translate(20px, 20px);
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}

@keyframes object_one {
    50% {
        -ms-transform: translate(20px, 20px);
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}

@-webkit-keyframes object_two {
    50% {
        -ms-transform: translate(-20px, 20px);
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}

@keyframes object_two {
    50% {
        -ms-transform: translate(-20px, 20px);
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}

@-webkit-keyframes object_three {
    50% {
        -ms-transform: translate(20px, -20px);
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}

@keyframes object_three {
    50% {
        -ms-transform: translate(20px, -20px);
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}

@-webkit-keyframes object_four {
    50% {
        -ms-transform: translate(-20px, -20px);
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}

@keyframes object_four {
    50% {
        -ms-transform: translate(-20px, -20px);
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}

/*------------------------------------------*/
/*  HERO-3
/*------------------------------------------*/

#hero-3 {
    position: relative;
    background-image: url(../images/hero-3.jpg);
    padding-top: 160px;
}

.hero-3-txt {
    margin-top: -30px;
}

.hero-3-txt h2 {
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-3-txt p {
    margin-bottom: 35px;
}

.hero-3-img {
    margin-left: 15px;
    margin-right: -75%;
    text-align: center;
    position: relative;
}

#hero-3 .solucao {
    background-color: var(--cor-abismo);
}


/*------------------------------------------*/
/*  FAQ
/*------------------------------------------*/

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


/*------------------------------------------*/
/*  Solução
/*------------------------------------------*/

.fbox-8 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fbox-img img {
    object-fit: contain;
    margin: 0 auto;
}