* {
    font-family: "SF Pro", sans-serif;
    font-weight: 900;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    }

.interface {
    max-width: 1280px;
    margin: 0 auto;
}

header {
    width: 100%;
    color: white;
    padding: 0px;
    top: 0;
    left: 0;

    background: #00000093;
    color: #fff;
    display: flex;
    justify-content: space-between;
    position: fixed;

    z-index: 1000; /* para ficar sobre outros elementos */
    padding: 1rem;
    box-shadow: 0 10px 13px rgba(255, 217, 0, 0.1); /* opcional: para dar destaque */
    
}

.top-header {
    padding: 10px 10%;
}

.top-header > .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header .btn-social button{
    height: 70px;
    font-size: 20px;
    cursor: pointer;
    
}

.bottom-header nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;

}

.bottom-header nav ul li a{
    color: white;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: block;
    transition: 0.2;

}

.bottom-header nav ul li a:hover{
    background-color: #ffc400;
    color: #000;
    box-shadow: inset 0 0 8px #000000a2;
}


.drop-hover {
    position: relative;
}



.drop-hover .drop {
    position: absolute;
    background-color: #0000008a;
    width: 100%;
    height: 0;
    overflow: hidden;

}

.drop-hover .drop a {
    padding: 20px;
}

.drop-hover:hover .drop {
    height: 300px;
}


body {
    background-image: url(../img/gold-bg2.jpg);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 0px 40px;
    background-size: 100%;
    
}

span {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 1);
}




cc

header h1, h2 {
    margin-top: 20px;
}



.container {
    color: white;
}

.container1, .container2, .container3, .container4, .container5 {
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.712);
    color: white;
    text-align: center;
}


.descubra {

    font-size: 30px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 1);

}


.container5 {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Define a sombra ao passar o mouse */


}


.container5:hover {
    cursor: pointer;
    
}

hr {
    border: none;
    height: 4px;
    background: linear-gradient(to right, rgba(255, 215, 0, 0), rgba(255, 215, 0, 1), rgba(255, 215, 0, 0));
    border-radius: 2px;
    margin: 20px 0;
   }

.container4 p1 {
    color: rgb(255, 0, 0);
    text-decoration: line-through;
    
    font-size: 50px;


}

.container4 h1 {
    font-size: 30px;
}
.container4 h5 {
    font-size: 15px;
    color: white;
}

.bx-support {
    font-size: 20px;

}

button {
    background-color: #ffd90004;
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 15px;
    font-size: 18px;
    transition: transform 400ms ease;
    border: 2px solid yellow;
    margin-bottom: 30px;
    text-align: center;
}

.button1 {
    background-color: #ffd900;
    color: #ffffff;
    border-color: white;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 18px;
    transition: transform 400ms ease;
    border: 2px solid rgb(252, 252, 252);
    margin-bottom: 20px;
    text-align: center;

}

button:hover {
    transform: scale(1.1);
    background-color: #ffc400;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.section1 {
    margin-top: 100px;
}

.section2, .section3, .section4, .section5, .section6 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.section6 {
    color: white;
}

.one-box {
    text-align: center;
    align-items: center;
    margin: 20px auto;
    border-radius: 20px;
    background-color: #000000c2;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    color: white;
}

.about-content {
    background-color: #0000008f;
    border-radius: 25px;
    padding: 20px;
    margin: 20px auto;
    max-width: 90%;
    color: white;
    text-align: center;
    

}
.about-content h1 {
    font-size: 40px;
    text-align: center;
}


/* Responsividade */
@media (max-width: 768px) {
    header {
        padding: 10px 10px;
        text-align: center;
        align-items: center;
        
    }
  

    header h1, header h2 {
        margin-top: 50px;
        font-size: 24px;
    }

    footer {
        margin-top: 50px;
        background-color: #0000009a;
        color: #fff;
        width: 1002%;
        padding: 10px;
    }
    
    footer p {
        font-size: 10px;
        color: #fff;
    }
    
    footer p1 {
        font-size: 5px;
        color: #fff;

    }

    .container1, .container2, .container3, .container4, .container5 {
        max-width: 95%;
        padding: 15px;
        margin-left: auto;
        margin-right: auto;
        /* text-align: justify; */
    }

    .container p1 {
        text-align: center;
    }
  
    hr {
        border-color: rgba(46, 43, 43, 0.192);
       }
    

    .container4 p1 {
        color: red;
        text-decoration: line-through;
    }

    .one-box {
        width: 100%;
        padding: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    button  {
        font-size: 16px;
        padding: 10px 20px;
        text-align: center;
    }

    .button1 {
        background-color: transparent;
        text-align: center;
    }

    .about-content {
        padding: 15px;
        margin-left: 10px;
        margin-right: 10px;
        color: white;
        text-align: center;
    }

    .container3, .container4, .container5 {
        margin-left: auto;
        margin-right: auto;
        padding: 20px;
        background-color: #0000008a;
    }

    .about img {
        width: 80%;
        max-width: 80%;
        height: auto;
    }
}










