@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --main-color: #0e0e0e;
    --site-color: #fff;
    --active-color: #c4943f;
    --first-color: #08132f;
    --second-color: #090b13;
    --third-color: #1b202a;
}

body {
    background-color: var(--main-color);
    color: var(--site-color);
}

.max-width {
    max-width: 1300px;
    padding: 0 10px;
    margin: auto;
}

/*INÃCIO MENU*/

.navbar .logo a {
    color: var(--active-color);
    font-size: 35px;
    font-weight: 500;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    font-family: 'Ubuntu', sans-serif;
    background-color: var(--main-color);
    border-bottom: solid var(--third-color) 1px;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: var(--site-color);
    font-size: 18px;
    font-weight: 400;
    margin-left: 25px;
}

.menu-btn {
    color: var(--site-color);
    font-size: 23px;
    cursor: pointer;
    display: none;
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        z-index: 999;
    }
    #menu-icon.active::before {
        content: "\f00d";
    }
    .navbar .menu {
        background-color: var(--main-color);
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    #menu-site.active {
        left: 0;
    }
    .navbar .menu li {
        display: block;
    }
    .navbar .menu li a {
        display: inline-block;
        margin: 13px 0;
        font-size: 25px;
    }
}

/*FIM MENU*/

/*INÃCIO TOPO*/

section {
    padding: 50px 0;
}

@media (max-width: 690px) {
    section {
        padding: 20px 0;
    }
}

.top {
    color: var(--site-color);
    display: flex;
    /*background: url("../images/banner_top_v5.jpg") no-repeat center;*/
    background: linear-gradient(to right, var(--main-color) 25%,rgba(255,255,255,0)), url("../images/banner_top.jpg") no-repeat center;;
    height: 100vh;
    min-height: 500px;
    background-size: cover;/*especifica o tamanho da imagem de fundo, deve cobrir todo espaÃ§o*/
    background-attachment: fixed;/*vai rolar junto ao conteeÃºdo? ou vai fixar sempre ao fundo*/
    font-family: 'Ubuntu', sans-serif;
}

.top .max-width {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.top .top-content .text-1 {
    font-size: 25px;
}
.top .top-content .text-2 {
    font-size: 55px;
    font-weight: 400;
    margin-left: -3px;
}
.top .top-content .text-3 {
    font-size: 32px;
    margin: 5px 0;
}

.top .top-content a {
    display: inline-block;
    background: var(--active-color);
    color: var(--site-color);
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 300;
    border-radius: 6px;
    border: 2px solid var(--active-color);
    transition: all 0.3s ease;
}

.top .top-content a:hover {
    color: var(--active-color);
    background: none;
}

.top .social-media {
    position: fixed;
    bottom: 20px; /* Distância do limite inferior */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.top .social-media i {
    font-size: 30px;
}

.top .social-media a {
    color: var(--site-color);
}

.top .social-media a:hover {
    color: var(--active-color);
}

@media (max-width: 500px) {
    .top .top-content .text-1 {
        font-size: 15px;
    }
    .top .top-content .text-2 {
        font-size: 35px;
        font-weight: 400;
        margin-left: -3px;
    }
    .top .top-content .text-3 {
        font-size: 22px;
        margin: 5px 0;
    }
}

@keyframes girar {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spin {
    display: inline-block; /* Garante que o ícone respeite transformações */
    animation: girar 1s linear infinite; /* Gira continuamente */
    font-size: 40px; /* Ajuste o tamanho conforme necessário */
    color: #007bff; /* Cor opcional */
}
/*FIM TOPO*/