:root {
    --cor-fundo-escuro: #09090b;
    --cor-fundo-rodape: #101013;
    --cor-texto-branco: #fafafa;
    --cor-texto-cinza: #9f9fa9;
    --cor-laranja: #ca3500;
    --cor-fundo-card: #111113;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

html,
body {
    background-color: var(--cor-fundo-escuro);
    color: var(--cor-texto-branco);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    scroll-behavior: smooth;
}

.cor-laranja {
    color: var(--cor-laranja);
}

.cor-gradiente {
    background: linear-gradient(90deg, #CA3500, #FF6900);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.peso-negrito {
    font-weight: bold;
}

.peso-normal {
    font-weight: normal;
}

.cabecalho {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: fixed;
    top: 10px;
    left: 96px;
    right: 96px;
    z-index: 100;
    background-color: rgba(24, 24, 27, 0.5);
    border-radius: 100px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.cabecalho .peso-negrito {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.logo-pe {
    background-color: var(--cor-laranja);
    color: #000000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.container-principal {
    display: flex;
    flex: 1;
    width: 100%;
    height: 100%;
}

.lado-esquerdo {
    width: 50%;
    padding: 140px 96px 40px 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 5% 0;
    position: relative;
    z-index: 1;
}

.lado-esquerdo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 96px;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-color: rgba(255, 105, 0, 0.2);
    border-radius: 50%;
    filter: blur(280px);
    z-index: -1;
    pointer-events: none;
}

.tag-topo {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    width: max-content;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #ff6900;
}

.ponto-laranja {
    width: 8px;
    height: 8px;
    background-color: #ff6900;
    border-radius: 50%;
    margin-right: 10px;
}

.titulo-principal,
.titulo-principal .peso-negrito {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.texto-descritivo {
    color: var(--cor-texto-cinza);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 90%;
    font-family: 'Inter', sans-serif;
}

.informacoes-evento {
    font-size: 22px;
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif;
}

.informacoes-evento .peso-negrito {
    font-weight: 800;
}

.container-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.botoes-flutuantes-mapa {
    display: flex;
    gap: 15px;
    margin-left: auto;
}

.menu-hamburguer {
    display: none;
    background: none;
    border: none;
    color: var(--cor-texto-branco);
    cursor: pointer;
    margin-left: auto;
    padding: 5px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #fafafa;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-pequeno {
    padding: 10px 20px;
    font-size: 14px;
}

.btn:hover {
    filter: brightness(1.15);
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.95);
}

.btn-primario {
    background-color: var(--cor-laranja);
}

.container-botoes .btn-secundario {
    background-color: #18181b;
    border: 1px solid #27272a;
}

.botoes-flutuantes-mapa .btn-secundario {
    background-color: rgba(202, 53, 0, 0.25);
    border: 1px solid var(--cor-laranja);
}

.lado-direito {
    width: 50%;
    position: relative;
}

.mapa-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) invert(90%) contrast(120%);
}

.card-local {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: var(--cor-fundo-card);
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
    overflow: hidden;
    border: 1px solid #27272a;
}

.card-imagem {
    width: 100%;
    height: 140px;
    background-color: #333;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.card-titulo {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    padding: 0 15px;
}

.card-endereco {
    font-size: 12px;
    color: var(--cor-texto-cinza);
    margin-bottom: 15px;
    padding: 0 15px;
}

.card-tags {
    display: flex;
    gap: 10px;
    padding: 0 15px 15px 15px;
}

.tag {
    font-size: 10px;
    border: 1px solid #3f3f46;
    color: #FF6900;
    padding: 3px 8px;
    border-radius: 20px;
}

.rodape {
    background-color: var(--cor-fundo-rodape);
    padding: 20px 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rodape-esquerda {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rodape-texto {
    font-size: 14px;
    color: var(--cor-texto-cinza);
}

.rodape-links {
    display: flex;
    gap: 20px;
}

.rodape-links a {
    color: var(--cor-texto-branco);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.rodape-links a:hover {
    color: var(--cor-laranja);
}

.btn:focus-visible,
.menu-hamburguer:focus-visible,
.rodape-links a:focus-visible {
    outline: 2px solid var(--cor-laranja);
    outline-offset: 4px;
    border-radius: inherit;
}

@media (min-width: 1440px) {
    .cabecalho {
        left: 15%;
        right: 15%;
    }

    .lado-esquerdo {
        padding-left: 15%;
        padding-right: 5%;
    }

    .lado-esquerdo::before {
        left: 15%;
    }

    .rodape {
        padding-left: 15%;
        padding-right: 15%;
    }
}

@media (max-width: 900px) {
    .cabecalho {
        left: 20px;
        right: 20px;
        flex-wrap: wrap;
        transition: background-color 0.3s ease, border-radius 0.3s ease;
        border-radius: 20px;
        background-color: var(--cor-fundo-card);
    }

    .menu-hamburguer {
        display: block;
    }

    .botoes-flutuantes-mapa {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 5px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .botoes-flutuantes-mapa.ativo {
        display: flex;
    }

    .botoes-flutuantes-mapa .btn {
        width: 100%;
    }

    .container-principal {
        flex-direction: column;
    }

    .lado-esquerdo {
        width: 100%;
        padding: 120px 20px 40px 20px;
        margin: 0;
        align-items: center;
        text-align: center;
    }

    .lado-esquerdo::before {
        left: 50%;
        width: 400px;
        height: 400px;
    }

    .titulo-principal {
        font-size: 50px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .texto-descritivo {
        max-width: 100%;
    }

    .container-botoes {
        flex-direction: column;
        width: 100%;
    }

    .lado-direito {
        width: 100%;
        height: 600px;
    }

    .rodape {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .card-local {
        position: absolute !important;
        top: 68% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 400px) {

    .titulo-principal,
    .titulo-principal .peso-negrito {
        font-size: 36px;
    }

    .informacoes-evento {
        font-size: 18px;
    }

    .lado-esquerdo {
        padding: 100px 15px 30px 15px;
    }
}

.invisivel {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visivel {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }

    .invisivel {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
}