@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');


:root {
    --main-color: #a3fb53;
}

body {
    background: #282828;
    font-family: "Space Grotesk", sans-serif;

}

a {
    text-decoration: none;
}

.tela-centralizada {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    text-align: center;
}


/* --------------- NAVBAR -------------- */
.navbar {
    background: #121212 !important;
    box-shadow: 0 4px 6px rgb(36 36 36);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
}

.navbar-brand {
    width: 170px;
}

.navbar-brand img {
    width: 100%;
}

.botoes-acesso {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: 30px
}

.botoes-acesso a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--main-color);
}

.button-default {
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    color: #121212;
    font-weight: 700;
}

.button-default:hover {
    background-color: #121212 !important;
    border: 2px solid var(--main-color);
    color: var(--main-color) !important;
    font-weight: 700;
}

.dropdown-toggle::after {
    color: var(--main-color);
}

/* --------------- WHATSAPP FLUTUANTE -------------- */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    /* filter: invert(1); */
}

/* --------------- HOME: PRIMEIRA SEÇÃO -------------- */

.texto-principal {
    text-align: center;
}

.texto-principal h1 {
    font-size: 4.5rem !important;
    color: #fff;
}

.texto-principal h2 {
    font-size: 4.5rem !important;
    text-align: center;
    color: #fff;
}

.texto-principal-segundo p {
    max-width: 280px;
    font-size: 11px;
    text-align: start;
    margin-bottom: 0px !important;
    color: #fff;
    padding: 14px 0px;

}

.texto-principal-segundo {
    display: flex;
    gap: 27px;
    margin: 15px 0px;
}

.texto-principal-terceiro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.since-img {
    width: 100px;
}

.since-img img {
    width: 100px;
}



h1 span,
h2 span {
    color: #282828;
    background: var(--main-color);
    border-radius: 33px;
    padding: 0px 17px;

}