/* +++++++ INÍCIO DA DIV 1 +++++++ */

html {
    scroll-behavior: smooth;
  }

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

.div-1 {
    margin: 0;
    padding-top: 90px;
    height: 600px;
    width: 100%;
    max-width: 1480px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content: center;
    text-align: center;
}

.div-1-left {
    width: 50%;
    text-align: left;
    margin-left: 6vw;
}

.copy-btn {
    margin-top: 10px;
    color: white;
    background: #ffecb80c;
    border: 0px;
    width: 260px;
    height: 30px;
    cursor: copy;
}


#toast {
    visibility: hidden;
    margin-left: -125px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #9b8039e3;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    position: fixed;
    z-index: 1;
    left: 55vw;
    bottom: 10px;
    font-size: 17px;
    transition: visibility 0.5s, opacity 0.5s 0.5s;
}


@media (max-width: 404px) {
    #toast {
        visibility: hidden;
        margin-left: -125px;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #9b8039e3;
        left: 69%;
        bottom: 10px;
        font-size: 14px;
    }
}



#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


.div-1-right {
    width: 50%;
}

.out-3d {
    margin-top: 20px;

    width: 480px;
}

.out-3d:hover {
    transform: scale(1);
    transition: none;
}

h1 {
    font-size: 65px;
    line-height: 1.2;
    background-image: linear-gradient(to right, #DFBD63, #F3DC96);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: background-image 0.3s ease;
}

h1:hover {
    background-image: linear-gradient(to right, #F3DC96, #DFBD63);
}

p {
    font-size: 19px;
    font-weight: 300;
    max-width: 550px;
    margin-bottom: 20px;
    color: white;
}

button {
    border-radius: 100px;
    transition: box-shadow 0.15s ease-in-out;
  }
  
button:hover {
    box-shadow: 0 0 10px 3px rgba(223, 189, 99, 0.7);
    cursor: pointer;
}

.btn-left {
    border: none;
    color: #35342A;
    width: 120px;
    height: 40px;
    font-size: 15px;
    font-weight: 500;
    margin-right: 20px;
    background: linear-gradient(87deg, #DEB958 36.46%, rgba(222, 185, 88, 0.12) 100%);
}

.btn-right {
    border: 1px solid #DFBD63;
    color: #DFBD63;
    width: 120px;
    height: 40px;
    font-size: 15px;
    font-weight: 300;
    background: transparent;
    
}

@media (max-width: 1200px) {
    .out-3d {
        width: 40vw;
    }
}

@media (max-width: 1006px) {
    .div-1 {
        display: flex;
        flex-direction: column-reverse;
    }

    .div-2 {
        visibility: hidden;
    }

    .div-1-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 0px;
        width: 100%;
        text-align: center;
    }

    .div-1-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .out-3d {
        margin-top: 17vw;
        margin-bottom: 20px;
    }
}


@media (max-width: 810px) {
    .div-1 h1 {
        max-width: fit-content;
        font-size: 8.02vw;
    }

    p {
        font-size: 2.36vw;
        max-width: 67vw;
    }

    .div-1 {
        height: 74.8vw;
    }
}

@media (max-width: 692px) {
    .div-1 {
        height: 500px;
    }
}    


@media (max-width: 608px) {
    h1 {
        font-size: 48.7px;
    }

    p {
        font-size: 14.28px;
        max-width: 67vw;
    }
}

@media (max-width: 553px) {
    p {
        max-width: 370px;
    }
}

@media (max-width: 483px) {
    .div-1 h1 {
        font-size: 40px;
    }

    .div-1 {
        margin-bottom: 20px;
    }
}

@media (max-width: 415px) {
    h1 {
        min-width: 96vw;
        border: 2px solid;
        font-size: 11.81vw;
    }

    .out-3d {
        margin-top: 0px;
    }

    p {
        font-size: 3.469vw;
    }

    .btn-left {
        width: 29vw;
        height: 9.8vw;
        font-size: 3.6vw;
    }

    .btn-right {
        width: 29vw;
        height: 9.8vw;
        font-size: 3.6vw;
    }
}

@media (max-width: 389px) {
    .div-1 h1 {
        font-size: 10vw;
    }

    .div-1 p {
        font-size: 3.7vw;
    }

    .out-3d {
        margin-top: -10px;
    }
}

/* +++++++ FIM DA DIV 1 +++++++ */
             /* +++++++ INÍCIO DA DIV 2 +++++++ */

.div-2 {
    background-image: url('/assets/img/out-wave.png');
    background-size:contain;
    background-repeat: repeat-x;
    height: 10vw;
    width: 100vw;
}

/* +++++++ FIM DA DIV 2 +++++++ */
             /* +++++++ INÍCIO DA DIV 3 +++++++ */

.div-3 {
    height: 600px;
    /* max-width: 100%; */
    max-width: 1480px;
    display: flex;
    width:100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 415px) {
    .div-3 {
        height: 140vw;
    }
}    

/* COINS SYMBOLS */

.btc-icon {
    max-width: 119px;
    top: 810px;
    left: 32vw;
    position: absolute;
}

.btc-icon {
    animation: moveBtc 3s ease-in-out infinite;
}

@keyframes moveBtc {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); 
    }
}

@media (max-width: 1069px) {
    .btc-icon {
        max-width: 13.5vw;
        top: 740px;
        left: 76vw;
        position: absolute;
    }
}    

@media (max-width: 765px) {
    .btc-icon {
        left: 580px;
        top: 670px;
    }
}   

@media (max-width: 654px) {
    .btc-icon {
        left: 520px;
        top: 610px;
    }
}  

@media (max-width: 591px) {
    .btc-icon {
        left: 480px;
        top: 630px;
    }
}    

@media (max-width: 563px) {
    .btc-icon {
        left: 430px;
        top: 630px;
    }
}   

@media (max-width: 503px) {
    .btc-icon {
        left: 380px;
        top: 630px;
    }
}   


@media (max-width: 453px) {
    .btc-icon {
        max-width: 15.5vw;
        top: 640px;
        left: 77vw;
        position: absolute;
    }
} 

@media (max-width: 382px) {
    .btc-icon {
        max-width: 15.5vw;
        top: 610px;
        left: 75vw;
        position: absolute;
    }
}

.out-gold-icon-1 {
    max-width: 150px;
    top: 870px;
    left: 45vw;
    position: absolute;
}

.out-gold-icon-1 {
    animation: moveOUT1 5s ease-in-out infinite;
}

@keyframes moveOUT1 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); 
    }
}

@media (max-width: 1319px) {
    .out-gold-icon-1 {
        max-width: 13.3vw;
        top: 800px;
        left: 47vw;
        position: absolute;
    }
} 



@media (max-width: 1069px) {
    .out-gold-icon-1 {
        max-width: 15.3vw;
        top: 950px;
        left: 81vw;
        position: absolute;
    }
} 

@media (max-width: 597px) {
    .out-gold-icon-1 {
        max-width: 12.3vw;
        top: 620px;
        left: 51vw;
        position: absolute;
    }
} 

@media (max-width: 453px) {
    .out-gold-icon-1 {
        max-width: 18.3vw;
        top: 590px;
        left: 39vw;
        position: absolute;
    }
} 

.cake-icon {
    max-width: 78px;
    position: absolute;
    top: 1070px;
    left: 47vw;
}

.cake-icon {
    animation: moveCake 4s ease-in-out infinite;
}

@keyframes moveCake {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); 
    }
}

@media (max-width: 1319px) {
    .cake-icon {
        max-width: 8.6vw;
        top: 1120px;
        left: 45vw;
        position: absolute;
    }
} 

@media (max-width: 1069px) {
    .cake-icon {
        max-width: 8.6vw;
        top: 1060px;
        left: 75vw;
        position: absolute;
    }
}

@media (max-width: 597px) {
    .cake-icon {
        max-width: 8.6vw;
        top: 1000px;
        left: 73vw;
        position: absolute;
    }
}

@media (max-width: 597px) {
    .cake-icon {
        max-width: 8.6vw;
        top: 920px;
        left: 80vw;
        position: absolute; 
    }
}    

.out-gold-icon-2 {
    max-width: 97px;
    position: absolute;
    top: 1150px;
    left: 30vw;
}

.out-gold-icon-2 {
    animation: moveOUT2 3.7s ease-in-out infinite;
}

@keyframes moveOUT2 {
    0%, 100% {
        transform: translateY(50);
    }
    50% {
        transform: translateY(-10px); 
    }
}

@media (max-width: 1069px) {
    .out-gold-icon-2 {
        top: 1000px;
        left: 12vw;
        position: absolute;
    }
} 

@media (max-width: 916px) {
    .out-gold-icon-2 {
        max-width: 10vw;
        top: 1000px;
        left: 7vw;
        position: absolute;
    }
} 

@media (max-width: 597px) {
    .out-gold-icon-2 {
        max-width: 10vw;
        top: 910px;
        left: 7vw;
        position: absolute;
    }
} 

@media (max-width: 453px) {
    .out-gold-icon-2 {
        max-width: 10vw;
        top: 974px;
        left: 9vw;
        position: absolute;
    }
} 

@media (max-width: 382px) {
    .out-gold-icon-2 {
        max-width: 10vw;
        top: 944px;
        left: 10vw;
        position: absolute;
    }
}    

@media (max-width: 365px) {
    .out-gold-icon-2 {
        max-width: 10vw;
        top: 924px;
        left: 14vw;
        position: absolute;
    }
}    

.eth-icon {
    max-width: 119px;
    position: absolute;
    top: 1180px;
    left: 15vw;
}

.eth-icon {
    animation: moveETH 3.7s ease-in-out infinite;
}

@keyframes moveETH {
    0%, 100% {
        transform: translateY(50);
    }
    50% {
        transform: translateY(-30px); 
    }
}

@media (max-width: 1069px) {
    .eth-icon {
        top: 820px;
        left: 10vw;
        position: absolute;
    }
} 

@media (max-width: 916px) {
    .eth-icon {
        max-width: 14vw;
        top: 810px;
        left: 2vw;
        position: absolute;
    }
} 

@media (max-width: 766px) {
    .eth-icon {
        max-width: 14vw;
        top: 670px;
        left: 6vw;
        position: absolute;
    }
} 

@media (max-width: 713px) {
    .eth-icon {
        max-width: 14vw;
        top: 610px;
        left: 9vw;
        position: absolute;
    }
} 

@media (max-width: 597px) {
    .eth-icon {
        max-width: 14vw;
        top: 640px;
        left: 9vw;
        position: absolute;
    }
} 

@media (max-width: 382px) {
    .eth-icon {
        max-width: 14vw;
        top: 610px;
        left: 9vw;
        position: absolute;
    }
}    
/* COINS SYMBOLS END */


.div-3-a {
    padding-left: 6vw;

}

.div-3-b {
    max-width: 480px;
    padding-right: 6vw;
}

.div-3-b-a {
    width: 100%;
}

@media (max-width: 1069px) {

    .div-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        width: none;
    }

    .div-3-a {
        padding-left: 0px;
        text-align: center;
    }

    .div-3-b {
        text-align: center;
        max-width: 520px;
        padding-right: 0px;
    }

}

@media (max-width: 810px) {
    .div-3-b {
        max-width: 57vw;
        padding-right: 0px;
    }

}

@media (max-width: 608px) {
    .div-3-b {
        max-width: 347px;
    }

    .div-3-a h1 {
        max-width: fit-content;
    }

    .div-3-a {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 553px) {
    .div-3-a {
        width: 100%;
    }

    .div-3-a h1 {
        font-size: 9.4vw;
    }

}

@media (max-width: 415px) {
    .div-3-a h1 {
        min-width: 0px;
    }

    .div-3-b {
        max-width: 83vw;
    }

}    

/* +++++++ FIM DA DIV 3 +++++++ */
             /* +++++++ INÍCIO DA DIV 4 +++++++ */
.div-4 {
    width: 100%;
    max-width: 1480px;
    height: 600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1229px) {
    .div-4 {
        height: 130vw;
    }
}    

.div-4-a img {
    width: 530px;
}

.div-4-a img {
    animation: moveBlock 2.6s ease-in-out infinite;
}

@keyframes moveBlock {
    0%, 100% {
        transform: translateY(50);
    }
    50% {
        transform: translateY(-20px); 
    }
}

.div-4-a {
    width: 50%;
    display: flex;
    justify-content: right;
}

.div-4-b {
    width: 50%;
}
@media (max-width: 1229px) {
    .div-4 {
        gap: 0px;
        height: 50vw;
    }
}

@media (max-width: 1069px) {
    .div-4 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 70vw;
    }

    .div-4-a {
        min-width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .div-4-a img {
        width: 500px;
        text-align: center;
    }

    .div-4-b {
        min-width: 60%;
        flex-direction: column;
        align-items: center;
    }
} 

@media (max-width: 915px) {
    .div-4-b {
        min-width: 556px;
        flex-direction: column;
        align-items: center;
    }

    .div-4-a img {
        width: 60vw;
    }
}


@media (max-width: 810px) {
    .div-4-b {
        min-width: 65vw;
        flex-direction: column;
        align-items: center;
    }
    .div-4-b h1 {
        width: 67vw;
        font-size: 8vw;
    }
}


@media (max-width: 608px) {
    .div-4-b {
        min-width: 400px;
        flex-direction: column;
        align-items: center;
    }

    .div-4-a img {
        width: 362px;
    }
}    


@media (max-width: 415px) {

    .div-2 {
        visibility: visible;
    }

    .div-4-b {
        min-width: 100%;
    }

    .div-4-a img {
        margin-top: 120px;
        width: 85vw;
    }
}

/* +++++++ FIM DA DIV 4 +++++++ */
             /* +++++++ INÍCIO DA DIV 5 +++++++ */

.div-5 {
    margin: 0;
    padding: 0;
    height: 600px;
    width: 100%;
    max-width: 1480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    text-align: center;
}             

.div-5 img {
    max-width: 568px;
}

.div-5 img {
    animation: moveOUTs 3s ease-in-out infinite;
}

@keyframes moveOUTs {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px); 
    }
}

@media (max-width: 1069px) {
    .div-5 {
        height: 700px;
    }
} 


@media (max-width: 810px) {
    .div-5 img {
        max-width: 70vw;
    }

    .div-5 h1 {
        width: fit-content;
        font-size: 8vw;
    }

    .div-5 {
        margin-top: 90px;
        height: 100vw;
    }
}    

@media (max-width: 755px) {
    .div-5 {
        height: 600px;
    }
}  

@media (max-width: 608px) {
    .div-5 img {
        width: 500px;
    }
}      

@media (max-width: 608px) {
    .div-5 {
        margin-top: 130px;
    }
}    

/* +++++++ FIM DA DIV 5 +++++++ */
             /* +++++++ INÍCIO DA DIV 6 +++++++ */

.div-6 {
    height: 800px;
    width: 100%;
    max-width: 1480px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: right;
}

.div-6-a {
    width: 48%;
    line-break: 20;
}
             
.div-6-b img {
    max-width: 640px;
    padding-right: 6vw;
}

.div-6-b img {
    animation: moveReward 3.8s ease-in-out infinite;
}

@keyframes moveReward {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px); 
    }
}

.div-6 h1 {
    margin-bottom: 20px;
}


.div-6-b {
    width: 46vw;
    display: flex;
}

@media (max-width: 1403px) {
    .div-6-b img {
        width: 45.5vw;
    }
}    

@media (max-width: 1224px) {
    .div-6 p, h1  {
        width: 555px;
    }

    .div-6-b img {
        min-width: 1px;
        margin-left: 5vw;
    }

    .div-6-a {
        width: 49%;
    }
}    

@media (max-width: 1069px) {
    .div-6 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .div-6-b {
        min-width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .div-6-b img {
        width: 590px;
        text-align: center;
    }

    .div-6-a {
        min-width: 100%;
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
} 

@media (max-width: 915px) {
    .div-6-a {
        min-width: 530px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 810px) {
    .div-6-a {
        min-width: 65vw;
        flex-direction: column;
        align-items: center;
    }

    .div-6-a h1, p {
        width: fit-content;
    }

    .div-6 h1 {
        font-size: 8vw;
    }

    .div-6-b img {
        width: 69vw;
    }
}

@media (max-width: 608px) {
    .div-6-a {
        min-width: 400px;
        flex-direction: column;
        align-items: center;
    }
        .div-6-b img {
            min-width: 60vw;
        }
}    

@media (max-width: 608px) {
    .div-6 {
        height: 100vw;
    }
}    

@media (max-width: 460px) {
    .div-6-b img {
        width: 88vw;
    }

    .div-6 {
        margin-top: 40px;
        margin-bottom: 170px;
    }
}    

@media (max-width: 415px) {
    .div-6-a {
        min-width: 100%;
    }

    .div-6 p {
        width: 90vw;
    }

    .div-6-b img {
        width: 85vw;
    }
    
}

/* +++++++ FIM DA DIV 6 +++++++ */
             /* +++++++ INÍCIO DA DIV 7 +++++++ */

.div-7 {
    position: relative;
    width: 100%;
    max-width: 1480px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.div-7 h1 {
    margin-bottom: 12px;
}

.div-7 p {
    max-width: 500px;
}

.div-7-a {
    gap: 40px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 800px;
    border: 4px solid #CFB76E;
    background-color: #252525;
    border-radius: 50px;
    padding-left: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: right;
    text-align: left;
    margin-left: 88px;
}


.div-7-a img {
    animation: moveLiquidity 5s ease-in-out infinite;
}

@keyframes moveLiquidity {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px); 
    }
}

.div-7-b img {
    animation: moveBurn 4s ease-in-out infinite;
}

@keyframes moveBurn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px); 
    }
}
.div-7-a-mobile img {
    animation: moveLiquidity 5s ease-in-out infinite;
}

@keyframes moveLiquidity {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px); 
    }
}

.div-7-b-mobile img {
    animation: moveBurn 4s ease-in-out infinite;
}

@keyframes moveBurn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px); 
    }
}

.div-7-b {
    gap: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-self: flex-end;
    width: 800px;    
    border: 4px solid #CFB76E;
    background-color: #252525;
    border-radius: 50px;
    padding: 40px;
    align-items: center;
    margin-right: 80px;

}

/* 959px */


@media (min-width: 994px) {
    .div-7-a-mobile {
        display: none;
    }
    .div-7-b-mobile {
        display: none;
    }
}    

@media (max-width: 994px) {
    .div-7 {
        width: 100%;
        height: 570px;
        gap: 30px;
        display: flex;
        flex-direction: column;
        justify-content: top;
        align-items: center;
        margin-left: 0px;
        margin-right: 0px;
    }
    .div-7-a {
        display: none;
    }
    .div-7-b {
        display: none;
    }
    

    .div-7-a-mobile {
        width: 90%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        background-color: #252525;
        border: #CFB76E 3px solid;
        border-radius: 50px;
        padding: 30px;
    }

    .div-7-b-mobile {
        width: 90%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background-color: #252525;
        border: #CFB76E 3px solid;
        border-radius: 50px;
        padding: 30px;
    }
}

@media (max-width: 860px) {
    .div-7 {
        height: fit-content;
    }

    .div-7-a-a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .div-7-a-a p {
        width: 60vw;
    }


    .div-7-a-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0px;
    }

    .div-7-a-mobile img {
        min-width: 34vw;
    }

    .div-7-b-b {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .div-7-b-b p {
        width: 60vw;
    }


    .div-7-b-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0px;
    }

    .div-7-b-mobile img {
        min-width: 34vw;
        height: 25vw;
    }    
}  

@media (max-width: 720px) {
    .div-7-a-a {
        width: 100%;
    }

    .div-7-b-b {
        width: 100%;
    }

    .div-7-a-a h1 {
        width: 100%;
    }
    .div-7-b-b h1 {
        width: 100%;
    }


}    


@media (max-width: 530px) {
    .div-7-a-mobile {
        margin-top: 100px;
    }

    .div-7-a-mobile h1 {
        font-size: 9vw;
    }

    .div-7-a-mobile {
        padding: 3vw;
    }

    .div-7-b-mobile {
        padding: 3vw;
    }

    .div-7-a-mobile p {
        width: 70vw;
    }

    .div-7-b-mobile h1 {
        font-size: 9vw;
    }

    .div-7-b-mobile p {
        width: 70vw;
    }
}
/* +++++++ FIM DA DIV 7 +++++++ */
             /* +++++++ INÍCIO DA DIV 8 +++++++ */


.div-8 {
    width: 100%;
    max-width: 1480px;
    height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1214px) {
    .div-8 {
        height: 70vw;
    }
}    

@media (max-width: 883px) {
    .div-8 {
        height: 80vw;
    }
}  

@media (max-width: 692px) {
    .div-8 {
        height: 93vw;
    }
}  

@media (max-width: 529px) {
    .div-8 {
        height: 109vw;
    }
}  

@media (max-width: 460px) {
    .div-8 {
        height: 130vw;
    }
}  

.div-8 h1 {
    width: fit-content;
    margin-bottom: 12px;
    line-height: 1;
}

.div-8 img {
    max-width: 67%;
    margin-top: -4px;
    margin-right: 2.5px;
}

.div-8 img {
    animation: moveBurn 2s ease-in-out infinite;
}

@keyframes moveBurn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px); 
    }
}

.div-8-a {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid #DABB64;
}

.div-8-a p {
    margin: 0px;
}

.div-8-b {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div-l-r {
    min-width: 100%;
    height: 8vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.div-8-left {
    border-right: 2px solid #DABB64;
    min-width: 50%;
    height: 100%;
}

.div-8-right {
    border-left: 2px solid #DABB64;
    width: 50%;
    height: 100%;
}

.div-8-b-b {
    min-width: 100%;
}

@media (max-width: 540px) {
    .div-8 img {
        min-width: 73vw;
        margin-bottom: 120px;
    }

    .div-8 {
        margin-top: 120px;
    }
}    

/* +++++++ FIM DA DIV 8 +++++++ */
             /* +++++++ INÍCIO DA DIV 9 - VÍDEO DA OUTTER FINANCE - PT, EN, ES E FR +++++++ */
.div-9 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 80%;
    margin-bottom: 80px;
    height: 43vw;     
}
