.elementor-758 .elementor-element.elementor-element-cfb04b7{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-49cfd50 *//* --- ESTILOS GERAIS --- */
:root {
    --cor-laranja: #e88c34;
    --cor-dourado: #FF8400;
    --cor-texto: #ffffff;
    --cor-fundo: #1a1a1a;
    --cor-fundo-card: #252525;
    --cor-detalhe-claro: #444;
}

body {
    font-family: 'RocknRoll One', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* --- ESTILOS DO CABEÇALHO --- */
.header {
    background-color: var(--cor-fundo-card);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--cor-dourado);
}

/* Menu de navegação */
.navbar {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--cor-texto);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--cor-laranja);
}

/* Ícones de utilidade */
.icons {
    display: flex;
    gap: 20px;
}

.icons a {
    font-size: 1.2rem;
    color: var(--cor-texto);
    transition: color 0.3s ease;
}

.icons a:hover {
    color: var(--cor-laranja);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .nav-links {
        justify-content: center;
        width: 100%;
        gap: 15px;
        flex-wrap: wrap;
    }

    .logo {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .icons {
        order: 2;
    }
}/* End custom CSS */