@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
    --fonte: 'Inter Tight', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: var(--fonte);
    font-weight: 500;
    overflow: hidden;
}

.player-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 65px;
}

.player {
    height: 65px;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    font-family: 'Inter Tight', sans-serif;
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.play-button i {
    font-size: 3rem;
    display: flex;
}

.volume-control {
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.volume-control i {
    font-size: 20px;
    margin-right: 10px;
}

.volume-slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100px;
    margin-left: 10px;
    height: 4px;
    border-radius: 2px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
}

.track-info {
    margin-left: 20px;
}

.artist {
    font-size: 15px;
    font-weight: 500;
}

.song {
    font-size: 15px;
    font-weight: 500;
}

.controls-group {
    display: flex;
    align-items: center;
}

.logo {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nome-radio {
    font-family: var(--fonte);
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0;
}

.slogan {
    font-family: var(--fonte);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0;
}

.logo img {
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rodape {
    width: 100%;
    display: flex;
    position: absolute;
    bottom: 0;
    align-items: center;
}

.rodape span {
    font-family: var(--fonte);
    font-size: 14px;
    font-weight: 500;
}

.bts-app {
    display: flex;
    position: absolute;
    width: 100%;
}

.bts-app img {
    height: auto;
    margin: 5px 0;
    border-radius: 5px;
    border: 2px solid #fff;
}

.botoes {
    position: absolute;
    display: flex;
}

.btn-whatsapp a {
    text-decoration: none;
    width: 60px;
    height: 60px;
    background-color: #37af33;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
    border: 2px solid #fff;
    margin: 5px;
}

.btn-pedido a {
    text-decoration: none;
    width: 60px;
    height: 60px;
    background-color: #af3b33;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    margin: 5px;
}

.btn-whatsapp i, 
.btn-pedido i {
    color: #fff;
    font-size: 37px;
}

.widget-tempo {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 2px;
}

.widget-tempo img {
    border-radius: 8px;
}

.footer-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.menu-content {
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.menu-content.active {
    transform: translateY(0);
}

.menu-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    padding: 8px 20px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    width: 90px;
    font-family: var(--fonte);
    font-weight: 500;
}

.menu-button.active {
    transform: translate(-50%, 0);
    bottom: 100%;
    border-radius: 5px 5px 0 0;
    z-index: 1001;
}

.menu-item {
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.5em;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tooltip {
    opacity: 1 !important;
    font-family: var(--fonte) !important;
    font-weight: 500 !important;
}

.modal {
    font-family: var(--fonte) !important;
}

@media screen and (min-width: 992px) {
    .player {
        padding: 0 15vw;
    }

    .logo {
        margin-top: 5rem;
        margin-left: 12%;
        width: 300px;
    }

    .logo img {
        width: 180px;
        height: auto;
    }

    .rodape {
        height: 35px;
        padding: 0 5rem;
    }

    .bts-app {
        align-items: flex-end;
        right: 2rem;
        bottom: 85px;
        flex-direction: column;
    }

    .bts-app img {
        width: 180px;
    }

    .botoes {
        left: 2rem;
        bottom: 90px;
        flex-direction: column;
    }

    .widget-tempo {
        right: 2rem;
        top: 5.5rem;
        max-width: 100%;
    }

    .menu-button {
        bottom: 35px;
    }

    .menu-content {
        padding: 20px;
    }

    .menu-item {
        padding: 0 15px;
    }
}

@media screen and (max-width: 991px) {
    .volume-control {
        display: none;
    }

    .logo {
        margin-top: 80px;
        justify-content: center;
        width: 100%;
    }

    .logo img {
        width: 150px;
        height: auto;
    }

    .rodape {
        height: 45px;
        padding: 0 7px;
        justify-content: center;
    }

    .bts-app {
        align-items: center;
        bottom: 110px;
        justify-content: center;
    }

    .bts-app img {
        width: 140px;
        margin: 0 5px;
    }

    .botoes {
        align-items: center;
        justify-content: center;
        bottom: 160px;
        width: 100%;
    }

    .widget-tempo {
        max-width: 100%;
        max-height: 100vh;
        bottom: 240px;
    }

    .tempo-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .player {
        padding-left: 15px;
    }

    .menu-button {
        bottom: 45px;
    }

    .menu-content {
        padding: 20px 5px;
    }

    .menu-item {
        padding: 0 10px;
    }
}