:root {
    --cor-laranja: #f08b1d;
    --cor-roxa: #613791;
    --cor-rosa: #d81b60;
    --cor-branca: #ffffff;
    --cor-amarela: #f7b232;
    --cor-texto-escuro: #232329;
    --cor-cinza-claro: #f5f5f7;
    --fonte-principal: 'Oswald', sans-serif;
    --fonte-secundaria: sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--fonte-principal);
    color: var(--cor-branca);
    background-color: var(--cor-branca);
    overflow-x: hidden;
}

.sessao-banner {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(102deg, var(--cor-laranja) 53%, var(--cor-roxa) 53%);
}

.sessao-banner::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 25vh;
    background: linear-gradient(to bottom, transparent 20%, var(--cor-branca) 95%);
    z-index: 6;
    pointer-events: none;
}

.secao-esquerda {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 6vw;
    box-sizing: border-box;
    z-index: 2;
}

#animacaoCargo {
    animation: entradaEsquerda 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

#animacaoNome {
    animation: entradaEsquerda 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.texto-cargo {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 5px;
    margin-bottom: -0.5vw;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.texto-nome {
    font-size: clamp(3rem, 7vw, 7.5rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.secao-centro {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 90vh;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

#animacaoFoto {
    animation: entradaFoto 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.imagem-candidata {
    height: 100%;
    width: auto;
    aspect-ratio: 853 / 1280;
    object-fit: contain;
    filter: drop-shadow(35px 10px 25px rgba(0, 0, 0, 0.55));
}

.secao-direita {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 6vw;
    box-sizing: border-box;
    z-index: 2;
    text-align: right;
}

#animacaoLogo {
    animation: entradaDireita 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

#animacaoNumero {
    animation: entradaDireita 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

#animacaoPrefeito {
    animation: entradaDireita 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.imagem-partido {
    width: clamp(50px, 6vw, 75px);
    margin-bottom: 2vh;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.numero-principal {
    font-size: clamp(6rem, 13vw, 15rem);
    font-weight: 700;
    line-height: 0.9;
    text-shadow: 6px 6px 0px var(--cor-amarela), 4px 4px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 1vh;
    white-space: nowrap;
    letter-spacing: -2px;
}

.bloco-prefeito {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-transform: uppercase;
    margin-top: 10px;
}

.textos-prefeito {
    text-align: right;
    margin-right: 1vw;
}

.destaque-amarelo {
    color: var(--cor-amarela);
    font-size: clamp(1rem, 1.8vw, 1.6rem);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.destaque-branco {
    font-size: clamp(0.8rem, 1.2vw, 1.1rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.numero-secundario {
    font-size: clamp(5rem, 9vw, 10rem);
    font-weight: 700;
    line-height: 0.75;
    text-shadow: 4px 4px 0px var(--cor-amarela), 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.texto-cnpj {
    position: absolute;
    bottom: 2vh;
    right: 2vw;
    font-size: 0.75rem;
    font-weight: 400;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.seta-navegar {
    position: absolute;
    bottom: 4vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--cor-branca);
    text-decoration: none;
    animation: flutuar 2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seta-navegar svg {
    width: clamp(2rem, 4vw, 2.8rem);
    height: clamp(2rem, 4vw, 2.8rem);
    fill: var(--cor-branca);
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
}

@keyframes entradaEsquerda {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes entradaDireita {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes entradaFoto {
    0% {
        opacity: 0;
        transform: translate(-50%, 80px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes flutuar {
    0% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 12px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

.sessao-conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    padding: 6vw 10vw 4vw 10vw;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    color: var(--cor-texto-escuro);
    position: relative;
    z-index: 7;
    background-color: var(--cor-branca);
    border-radius: 40px 40px 0 0;
    box-shadow: 0px -15px 30px rgba(0, 0, 0, 0.05);
}

.bloco-texto {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.titulo-sessao {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cor-rosa);
    line-height: 1;
}

.texto-sessao {
    font-family: var(--fonte-secundaria);
    font-size: clamp(1.1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    margin: 0;
    color: #444;
}

.bloco-estatisticas {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.dado-estatistico {
    background-color: var(--cor-rosa);
    color: var(--cor-branca);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.25);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.dado-estatistico:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(216, 27, 96, 0.4);
}

.conteudo-dado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.icone-dado {
    width: clamp(2rem, 3.5vw, 3rem);
    height: clamp(2rem, 3.5vw, 3rem);
    fill: var(--cor-amarela);
    filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.2));
}

.numero-dado {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin: 0;
    color: var(--cor-branca);
    line-height: 1;
}

.rotulo-dado {
    font-family: var(--fonte-secundaria);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.bloco-midias {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.reprodutor-apple {
    background-color: var(--cor-cinza-claro);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cabecalho-reprodutor {
    display: flex;
    align-items: center;
    gap: 18px;
}

.capa-jingle {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.info-jingle {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-jingle h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--cor-texto-escuro);
    letter-spacing: 0.5px;
}

.info-jingle p {
    margin: 4px 0 0 0;
    font-family: var(--fonte-secundaria);
    font-size: 0.95rem;
    color: var(--cor-rosa);
    font-weight: bold;
}

.controles-tempo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--fonte-secundaria);
    font-size: 0.85rem;
    color: #555;
    width: 100%;
}

.container-barra {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    height: 20px;
}

.barra-progresso {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 4;
    margin: 0;
}

.barra-progresso::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cor-rosa);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease;
}

.barra-progresso::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.progresso-visual {
    position: absolute;
    left: 0;
    top: 7px;
    height: 6px;
    background-color: var(--cor-rosa);
    border-radius: 3px 0 0 3px;
    z-index: 2;
    pointer-events: none;
    width: 0%;
}

.botoes-acao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.btn-controle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cor-texto-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0;
}

.btn-controle svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.btn-controle:hover {
    color: var(--cor-rosa);
    transform: scale(1.1);
}

.btn-tocar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--cor-rosa);
    color: white;
    box-shadow: 0 6px 16px rgba(216, 27, 96, 0.35);
}

.btn-tocar svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.btn-tocar:hover {
    background-color: var(--cor-roxa);
    color: white;
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(97, 55, 145, 0.35);
}

.cartao-album {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: block;
    text-decoration: none;
}

.cartao-album:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.capa-album {
    width: 100%;
    aspect-ratio: 999 / 561;
    object-fit: cover;
    display: block;
}

.overlay-album {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(216, 27, 96, 0.95) 10%, rgba(216, 27, 96, 0.4) 60%, transparent);
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.titulo-album {
    color: var(--cor-branca);
    font-size: 1.9rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.icone-link {
    background-color: var(--cor-amarela);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cartao-album:hover .icone-link {
    transform: rotate(45deg) scale(1.1);
}

.icone-link svg {
    width: 20px;
    height: 20px;
    fill: var(--cor-texto-escuro);
}

.rodape-desenvolvedor {
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--cor-branca);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
}

.link-homenagem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #777;
    font-family: var(--fonte-secundaria);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.link-homenagem:hover {
    color: var(--cor-rosa);
}

.link-homenagem svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.animar-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

@media (max-width: 1024px) {
    .sessao-banner {
        flex-direction: column;
        justify-content: flex-start;
    }

    .sessao-banner::after {
        height: 15vh;
    }

    .secao-esquerda {
        width: 100%;
        background: var(--cor-laranja);
        padding: 10vw 5vw;
        align-items: center;
        text-align: center;
    }

    .secao-centro {
        position: relative;
        left: auto;
        transform: none;
        height: 60vh;
        margin-top: -5vh;
        z-index: 5;
    }

    .imagem-candidata {
        filter: drop-shadow(15px 15px 25px rgba(0, 0, 0, 0.5));
    }

    .secao-direita {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 5vw;
        margin-top: -2vh;
        padding-bottom: 15vh;
    }

    .bloco-prefeito {
        flex-direction: column;
    }

    .textos-prefeito {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }

    .texto-cnpj {
        position: absolute;
        bottom: 2vh;
        right: 50%;
        transform: translateX(50%);
        text-align: center;
        width: 100%;
        color: var(--cor-texto-escuro);
        text-shadow: none;
    }

    .sessao-conteudo {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        padding: 12vw 5vw 6vw 5vw;
        border-radius: 30px 30px 0 0;
    }

    .bloco-estatisticas {
        flex-direction: column;
        gap: 1.2rem;
    }

    .info-jingle {
        align-items: center;
    }

    .cabecalho-reprodutor {
        flex-direction: column;
        text-align: center;
    }
}