@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
    --fonte: 'Inter Tight', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}

.player {
    width: 100%;
    height: 65px;
    margin-bottom: 1rem;
}

#mylunaradio {
    height: 65px;
    width: 100%;
}

.corpo,
.corpo-2 {
    margin-bottom: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 0.8rem 1.5rem;
}

.col_1 {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col_2 {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.tooltip {
    color: #fff;
    font-family: var(--fonte) !important;
    font-weight: 500 !important;
    --bs-tooltip-opacity: 1 !important;
}

.icones {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.icones a {
    text-decoration: none;
}

.icones i {
    font-size: 1.7rem;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
}

.icones-1,
.icones-2 {
    margin: 10px 0;
    display: flex;
    gap: 15px;
}

.botoes-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
}

.botoes-app img {
    margin: 5px 0;
    height: auto;
    border-radius: 5px;
}

.widget-tempo {
    width: 100%;
    margin: 10px 0;
  display: flex;
  justify-content: center;
}

.parceiros {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
}

.parceiros img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.img-corpo {
    width: 100%;
    border-radius: 10px;
    padding-bottom: 10px;
}

.img-corpo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer {
    background-color: #f5f5fa;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
}

.footer span {
    font-family: var(--fonte);
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.footer span a {
    text-decoration: none;
    color: #000;
}

.modal-content {
    font-family: var(--fonte);
}

.ws_images img {
    border-radius: 10px;
}

@media screen and (min-width: 992px) {
    .player,
    .corpo,
    .corpo-2,
    .footer {
        margin-left: 3rem;
        margin-right: 3rem;
        width: calc(100% - 6rem);
    }

    .player {
        margin-top: 1rem;
    }

    #mylunaradio {
        border-radius: 10px;
    }

    .nome-radio {
        font-family: var(--fonte);
        font-size: 2rem;
        font-weight: 600;
        align-items: center;
        display: flex;
        margin-bottom: 10px;
    }

    .nome-radio img {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }

    .botoes-app img {
        width: 100%;
    }

    .parceiros {
        padding: 10px 0;
    }
	
	.parceiros img {
		max-width: 200px;
	}
}

@media screen and (max-width: 991px) {
    body {
        min-height: 100vh;
    }

    .corpo,
    .corpo-2,
    .footer {
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc(100% - 2rem);
    }

    .player {
        width: 100%;
    }

    .nome-radio {
        font-family: var(--fonte);
        font-size: 1.5rem;
        font-weight: 600;
        text-align: center;
        margin: 10px 0;
    }

    .nome-radio img {
        display: none;
    }

    .botoes-app img {
        width: 60%;
    }

    .parceiros {
        flex-wrap: wrap;
        padding: 10px;
    }
	
	.parceiros img {
		max-width: 180px;
	}
}