/* Variáveis de Cores */
:root {
    --preto: #000;
    --chumbo: #101010;
    --branco: #D7D7D7;
    --laranja: #F37F02;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    background: linear-gradient(to bottom, #000000 0%, #1a1a1a 50%, #2A2B2B 100%);
    font-family: 'League Spartan', sans-serif;
    color: var(--branco);
}

html {
    font-size: 14px;
    letter-spacing: .04rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 800;
}

/* chumbos */
p, ul, ol, li, span {
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
}

p {
    color: var(--branco);
    line-height: 1.6;
    letter-spacing: 0.02em;
    opacity: 0.9;
    font-size: clamp(14px, 1.5vw, 16px);
}

/* Links */
a {
    font-family: 'League Spartan', sans-serif;
    text-decoration: none !important;
    transition: .3s;
    font-weight: 500;
    color: var(--laranja);
}

a:hover:not(.btn) {
    color: rgb(253, 169, 79);
}

h2 {
    font-weight: 700;
    font-size: 28px;
    color: var(--laranja);
    margin-bottom: 10px;
}

h3 {
    font-weight: 600;
    font-size: 20px;
    color: var(--branco);
    margin-bottom: 10px;
}

/* Botões */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    vertical-align: middle;
    padding: 15px 25px;
    border-radius: 30px;
    background: linear-gradient(90deg, #FF8800 0%, #FFA200 100%);
    box-shadow: 0 4px 6px rgba(255, 153, 0, 0.227);
    color: var(--preto);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: none;
    transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
}

.btn:hover {
    filter: brightness(1.3);
    box-shadow: 0 4px 6px rgba(255, 153, 0, 0.356);
}

/* Secondary */
.btn.btn-secondary {
    background: linear-gradient(90deg, #FF8800 0%, #FFA200 100%);
    color: var(--laranja);
    position: relative;
    z-index: 1;
    transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
}

.btn.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #101010;
    border-radius: 28px;
    z-index: -1;
}

.btn.btn-secondary:hover {
    color: var(--preto);
    background: linear-gradient(90deg, #FF8800 0%, #FFA200 100%);
}

.btn.btn-secondary:hover::before {
    background: transparent;
}

/* Ícones */
.icon svg, .icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    fill: currentColor;
    flex-shrink: 0;
}

/* Espaçamento geral */
main > section:not(#bannerHome, #page-header) {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2em;
    }
}

/* ---------------------------------------------------------------------------------------------------------- */
/* HEADER */
/* ---------------------------------------------------------------------------------------------------------- */

header {
    background-color: var(--preto);
    color: var(--branco);
    z-index: 999;
    height: 80px;
    display: flex;
    align-items: center;
	position: relative;
}

header .container {
    width: 100%;
    padding: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    transition: all 0.3s ease;
}

header .btn.instagram {
    margin-left: 10px;
    color: #000;
    padding: 15px;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

@media (max-width: 1100px) {
	nav #primary-menu li a {
	    font-size: 12px;
	}
}
/* ---------------------------------------------------------------------------------------------------------- */
/* LOGO */
/* ---------------------------------------------------------------------------------------------------------- */

header .logo {
    height: 25px;
    object-fit: contain;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* MENU PRINCIPAL (Desktop) */
/* ---------------------------------------------------------------------------------------------------------- */

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav #primary-menu ul {
    display: flex;
    gap: 30px;
    margin: 0;
    list-style: none;
}

nav #primary-menu li a {
    color: var(--branco);
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

nav #primary-menu li:hover a {
    color: var(--laranja);
    font-weight: 700;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* SUBMENU */
/* ---------------------------------------------------------------------------------------------------------- */

.menu-item {
    position: relative;
}

.menu-item .sub-menu {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    background-color: var(--preto);
    border-radius: 4px;
    padding: 10px 20px;
    min-width: 300px;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.menu-item-has-children > a::after {
    content: '>';
    margin-left: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--branco);
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a::after {
    transform: rotate(-90deg);
}

.menu-item .sub-menu li {
    width: 100%;
    border-bottom: 1px solid var(--branco);
}

.menu-item .sub-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-item .sub-menu li a:hover {
    color: var(--laranja);
}

.menu-item:hover > .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* MOBILE MENU */
/* ---------------------------------------------------------------------------------------------------------- */

@media (max-width: 999px) {
    header {
        height: 65px;
        padding: 10px;
    }

    header .container {
        height: 65px;
        justify-content: space-between;
    }

    header .header-buttons {
        display: none;
    }

    nav #primary-menu ul {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .mobile-menu {
        display: block;
        cursor: pointer;
    }

    .mobile-menu .lines {
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-menu .lines div {
        width: 40px;
        height: 4px;
        background-color: var(--laranja);
        border-radius: 20px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-menu .lines.active .line1 {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu .lines.active .line2 {
        opacity: 0;
    }

    .mobile-menu .lines.active .line3 {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    nav #primary-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 0;
        background-color: var(--preto);
        width: 100%;
        padding: 50px 0;
        gap: 30px;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(39, 48, 155, 0.16);
        border-radius: 0 0 5px 5px;
    }

    nav #primary-menu.active {
        display: flex;
        border-top: 1px solid var(--branco);
    }

    nav #primary-menu a {
        color: var(--branco);
        font-weight: 500;
    }

    nav #primary-menu a:hover {
        font-weight: 600;
    }

    .menu-item .sub-menu {
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .menu-item.active .sub-menu {
        display: flex;
        max-height: 500px;
    }
    .menu-item .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
}

@media (max-width: 500px) {
    nav .nav-list {
        width: 90vw;
    }
}

/*------------------------------------------------------------------------------------------------------------------*/
/* FOOTER - RODAPÉ */
/*------------------------------------------------------------------------------------------------------------------*/

footer {
    width: 100%;
    background: linear-gradient(10.1deg, #1F2222 7.76%, #1E1E20 92.73%);
    color: var(--branco);
    font-size: 16px;
    padding-top: 7vh;
    text-align: center;
}

footer a {
	text-decoration: none;
    color: var(--branco);
    transition: color 0.3s ease;
}

footer .copyright a {
    padding: 10px;
    font-weight: 600px;
    font-size: 12px;
    opacity: 0.9;
}

footer a:hover {
    color: var(--laranja);
}

footer .logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

footer a.btn.instagram {
    background: transparent;
    box-shadow: none;
    color: var(--laranja);
}

/* Infos de contato */
footer .infos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Copyright */
footer .copyright {
    margin-top: 5vh;
	text-align: center;
}

footer .copyright .container {
    border-top: 1px solid #424546;
    padding: 16px;
}

/*------------------------------------------------------------------------------------------------------------------*/
/* FOOTER - RESPONSIVO */
/*------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 999px) {
    footer .content-footer .row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    footer .site-branding {
        text-align: center;
    }

    footer .site-branding img {
        max-width: 180px;
    }

    footer .copyright {
        flex-direction: column;
        text-align: center;
    }
}

/*------------------------------------------------------------------------------------------------------------------*/
/* OUTROS */
/*------------------------------------------------------------------------------------------------------------------*/

.section-header {
    margin-bottom: 25px;
}