/*
Theme Name: 1 FM
Author: Raphael Delgado
Author URI: https://mediahubtechnologies.com
Version: 1.0
*/

body {
    background-color: #eeeeee;
}

#root-menu {
    background-color: white;
    border: .5vw solid #eeeeee;
    border-radius: 20px;
    margin-top: 5vw;
}

#root-menu li {
    list-style: none;
    margin: .7vw;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#root-menu li:nth-child(2) { border-left: 5px solid #000000; }
#root-menu li:nth-child(3) { border-left: 5px solid #dc143c; }
#root-menu li:nth-child(4) { border-left: 5px solid #B7B6E7; }
#root-menu li:nth-child(5) { border-left: 5px solid #50085D; }
#root-menu li:nth-child(6) { border-left: 5px solid #E74818; }
#root-menu li:nth-child(7) { border-left: 5px solid #74C23D; }
#root-menu li:nth-child(8) { border-left: 5px solid #FC6C64; }
#root-menu li:nth-child(9) { border-left: 5px solid #FFB700; }
#root-menu li:nth-child(10) { border-left: 5px solid #8C2242; }
#root-menu li:nth-child(11) { border-left: 5px solid #AE6337; }

#root-menu li a {
    font-family: "Montserrat", serif;
    color: #606060;
    font-size: 1em;
    text-decoration: none;
    transition: all .2s ease-in-out;
    font-weight: bold;
    margin-left: .7vw;
}

#root-menu li a:hover {
    color: #e9bf18;
    transition: all .2s ease-in-out;
}

#root-content {
    background-color: transparent;
    border: .5vw solid #eeeeee;
    border-radius: 20px;
}

#box-menu-centered {
    position: fixed;
    width: 14vw;
}

#box-menu-centered-elements {
    align-items: center;
    display: inline-flex;
    width: auto;
}


#menu-logo {
    height: 8vw;
    float: left;
    margin-top: -5vw;
    display: block;
}

#carousel-promos img {
    border-radius: 10px;
    height: auto;
}

#box-app-home {
    padding: 0 1vw;
    background-color: white;
    border-radius: 10px;
    border-left: .5vw solid #eeeeee;
    padding: 1vw;
}

#box-app-home h2 {
    font-family: "Montserrat", serif;
    font-weight: bold;
    color: #dc143c;
    font-size: 1.8vw;
}

#box-app-home h5 {
    font-family: "Outfit", serif;
    color: #50085D;
    font-size: 1vw;
}

#box-app-home img:nth-child(3) {
    width: 80%;
    display: flex;
    margin: auto;
}

#box-app-home .row a {
    width: 50%;
    padding: 5px;
}

#box-app-home .row img {
    width: -webkit-fill-available;
}

#box-players-home, #box-noticias-home {
    background-color: white;
    margin: 4vw 0;
    border-radius: 10px;
    padding: 1vw;
}

#box-noticias-home {
    margin: 4vw 0 0 0 !important;
}

#box-players-home h4, #box-noticias-home h4 {
    font-family: "Outfit", serif;
    color: #e9bf18;
    background-color: white;
    font-size: 1.7vw;
    font-weight: bold;
    margin-top: -2.7vw;
    padding: 0 1vw;
    border-radius: 10px;
}

#box-players-home h4 {
    float: left !important;
    position: absolute !important;
}

#stations-list {
    display: contents;
    scroll-behavior: smooth;
    min-width: 11vw;
    width: 100%;
    height: auto;
    z-index: 2;
    transition: all .3s ease-in-out;
    background-color: white;
}

#stations-list a {
    margin: auto;
}

.station-menu {
    /* min-width: 13vw; */
    width: 13vw;
    height: 6vw;
    border-radius: 15px;
    background-color: #FF0000;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1vw .7vw;
    position: relative;
}
.station-menu img {
    width: inherit;
    max-width: 2vw;
    transform: translateY(15px);
    vertical-align: unset;
    position: absolute;
    left: 10%;
    top: -25px;
}

.station-menu::before,
.station-menu::after {
    content: '';
    position: absolute;
    opacity: 0;
    width: 0%;
    height: 0%;
    transition: width 0.2s linear, height 0.15s 0.2s ease-out, opacity 0s 0.35s;
}

.station-menu::before {
    bottom: 0;
    left: -1px;
    border-top: 5px solid goldenrod;
    border-left: 5px solid goldenrod;
    border-radius: 15px;
}

.station-menu::after {
    top: 0;
    right: -1px;
    border-bottom: 5px solid goldenrod;
    border-right: 5px solid goldenrod;
    border-radius: 15px;
}

.station-menu:hover::before,
.station-menu:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
    transition: width 0.2s 0.15s ease-out, height 0.15s ease-in, opacity 0s;
}

.station-menu p {
    position: absolute;
    bottom: 0;
    font-weight: bold;
    left: 10%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: .85vw;
}

.rds-parent {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
.rds-parent h6 {
    max-width: 70%;
    font-size: .8em;
    font-weight: bold;
    padding: 5px;
    padding-right: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#box-noticias-home a, #content-noticias a {
    text-decoration: none;
    font-family: "Outfit", serif;
    color: #50085D;
    font-size: 1.3vw;
    transition: all .1s ease-in-out;
}

#box-noticias-home a:hover, #content-noticias a:hover {
    color: goldenrod;
    transition: all .1s ease-in-out;
}

#box-noticias-home img {
    border-radius: 0px;
}

#home-noticias-leia-mais {
    background-color: #50085D;
    padding: 0 3vw;
    margin: auto;
    margin-top: 3vw;
    margin-bottom: 1vw;
    border-radius: 10px !important;
}

#home-noticias-leia-mais a {
    color: white !important;
    font-weight: bold;
    font-size: 1.8vw;
}

#home-noticias-leia-mais a:hover {
    color: goldenrod !important;
    font-weight: bold;
}

#banner-promos {
    background-color: white;
    border-top: 1vw solid #eeeeee;
    border-bottom: 1vw solid #eeeeee;
    border-radius: 20px;
    width: 100%;
    padding: 3vw 0;
    text-align: center;
}

#banner-promos h4 {
    font-family: "Outfit", serif;
    color: #e9bf18;
    font-size: 1.7vw;
    font-weight: bold;
    margin-bottom: 4vw;
}

.form-music {
    width: 60%;
    border-radius: 20px;
    border: none;
    background-color: #eeeeee;
    font-size: 1.1vw;
    padding: 5px 0 5px 30px;
    color: #606060;
}

#content-aradio, #content-top10, #content-promocoes, #content-promocao, #content-noticias, #content-noticia, #content-fotos, #content-album, #content-podcasts, #content-videos, #content-contato, #content-eventos {
    background-color: white;
    border-radius: 15px;
    width: 100%;
    padding: 3vw;
}

#content-aradio h1, 
#content-aradio h2, 
#content-aradio h3, 
#content-aradio h4, 
#content-aradio h5, 
#content-aradio h6,
#content-noticia h1 {
    font-family: "Outfit", serif;
    color: #e9bf18;
    font-weight: bold;
    margin: 4vw 0;
}

#content-aradio p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1em;
    text-indent: 3em;
}

#content-top10 .position-left h2, .position-right h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 4vw;
    color: darkmagenta;
    font-weight: bold;
}

#content-top10 h1, #content-promocoes h1, #content-promocao h1, #content-noticias h1, #content-podcasts h1, #content-videos h1, #content-eventos h1, #content-contato h1, #content-fotos h1 {
    font-family: "Outfit", serif;
    color: goldenrod;
    font-weight: bold;
    text-align: center;
    margin: 0 0 2vw 0;
}

.box-top10-position {
    margin: 2vw 0;
}

.position-left {
    text-align: left;
}

.position-right {
    text-align: right;
}

.top10-thumb img {
    width: 100% !important;
    border-radius: 5px;
    height: auto;
    transition: all .2s ease-in-out;
}

.top10-thumb img:hover {
    filter: brightness(1.5);
    transition: all .2s ease-in-out;
}

.top10-name {
    font-family: "Outfit", serif;
    font-size: 1.3rem;
    text-align: left;
}

.top10-name-right {
    text-align: right !important;
}

#content-promocoes img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2vw;
    border-radius: 25px;
    transition: all .2s ease-in-out;
    z-index: 1;
}

#content-promocoes img:hover {
    transform: scale(1.2);
    transition: all .2s ease-in-out;
    z-index: 999999;
}

#content-promocao h1 {
    text-align: left !important;
}

#content-promocao p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1em;
}

#content-noticias img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1vw;
}

#content-noticias img:hover {
    transform: scale(1.1);
    transition: all .2s ease-out;
}

#content-noticia p {
    font-size: 1em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#content-noticia h2,
#content-noticia h3,
#content-noticia h4,
#content-noticia h5,
#content-noticia h6 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#content-fotos img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: all .2s ease-in-out;
}

#content-fotos img:hover {
    filter: brightness(1.1);
    transform: scale(1.1);
    transition: all .2s ease-in-out;
}

#content-fotos a {
    text-decoration: none;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: darkmagenta;
    font-size: 1.5em;
    margin: 1vw 0;
    display: block;
}

#content-album h1 {
    font-family: "Outfit", serif;
    color: #e9bf18;
    font-weight: bold;
    margin: 0 0 4vw 0;
    text-align: center;
}

#content-album img:hover {
    filter: brightness(1.1);
    transition: all .2s ease-in-out;
}

#content-videos iframe {
    border-radius: 10px;
}

#content-videos figure {
    max-width: 30%;
    margin: 0 10px;
}

.evento-icone img {
    max-width: 10vw;
    height: auto;
    border-radius: 10px;
}

.evento-descricao p {
    margin: 0 !important;
}

footer {
    width: 100%;
    background-color: #E5B859;
    height: auto;
}

#footer-logo {
    height: 5vw;
    margin: 1vw 0;
}

#box-footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    justify-content: center;
}

#box-footer-contacts a {
    text-decoration: none;
    color: black;
}

#box-footer-contacts a:hover {
    color: white
}

#footer-social-icons, #social-icons-menu {
    display: flex;
    justify-content: center; /* Centraliza os links horizontalmente */
    align-items: center; /* Centraliza os links verticalmente */
    height: 100%; /* Garante que a div ocupe a tela toda para centralizar verticalmente */
    gap: 20px; /* Espaço entre os links */
}

#social-icons-menu i:hover {
    color: goldenrod !important;
}

#footer-social-icons i, #social-icons-menu i {
    font-size: 1.5vw;
    margin: .1vw;
    color: #606060;
    transition: all .1s ease-in-out;
}

#footer-social-icons i:hover {
    color: white;
    transition: all .1s ease-in-out;
}

#footer-social-icons a, #social-icons-menu a {
    display: flex;
    align-items: center; /* Alinha o ícone ao texto */
    gap: 8px; /* Espaço entre ícone e texto */
    text-decoration: none;
    color: black;
    font-size: 18px;
}

#copyright {
    width: 100%;
    padding: 1vw;
    background-color: #eeeeee;
}

#copyright a {
    text-decoration: none;
}

#lgpd-warn {
    width: 100%;
    height: auto;
    background-color: goldenrod;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 1em;
    z-index: 99999999999;
}

#lgpd-warn button {
    margin: 1em 1em;
}

#lgpd-warn h6 {
    color: white;
}

.fa-bars {
    display: none;
}

#menu-mobile {
    display: none;
}

@media (max-width: 992px) {

    #box-menu-centered {
        position: relative;
        width: 100%;
    }

    #box-menu-centered-elements {
        align-items: center;
        display: inline-flex;
        width: 100%;
    }

    #box-menu-centered-elements a {
        margin: auto;
    }

    #social-icons-menu i {
        font-size: 1.2em;
        margin: 4.1vw;
        color: #606060;
        transition: all .1s ease-in-out;
    }

    .fa-bars {
        display: flex;
        position: absolute;
        right: 0rem;
        top: 2rem;
        float: left;
        font-size: 3rem;
        margin: 2rem;
        color: goldenrod;
    }
    #menu-mobile {
        display: block;
        height: auto;
        width: 60%;
        text-align: right;
        position: absolute;
        right: 0;
        background-color: white;
        z-index: 99999;
        border-radius: 10px;
        transition: all .5s ease-in-out;
        transform: translateX(0);
    }
    #menu-mobile.hidden {
        width: 0%;
        visibility: hidden;
        overflow: hidden;
        pointer-events: none;
    }
    #menu-mobile .page_item {
        display: inline-block !important;
    }
    #root-menu {
        margin-top: 0;
    }
    #root-menu li {
        display: none;
        margin: 1rem;
    }
    #root-menu li a {
        font-size: 1.5rem;
        margin-right: 10px;
    }
    #root-menu li:nth-child(1) { border-left: none !important; border-right: 5px solid #000; }
    #root-menu li:nth-child(2) { border-left: none !important; border-right: 5px solid #dc143c; }
    #root-menu li:nth-child(3) { border-left: none !important; border-right: 5px solid #B7B6E7; }
    #root-menu li:nth-child(4) { border-left: none !important; border-right: 5px solid #50085D; }
    #root-menu li:nth-child(5) { border-left: none !important; border-right: 5px solid #E74818; }
    #root-menu li:nth-child(6) { border-left: none !important; border-right: 5px solid #74C23D; }
    #root-menu li:nth-child(7) { border-left: none !important; border-right: 5px solid #FC6C64; }
    #root-menu li:nth-child(8) { border-left: none !important; border-right: 5px solid #FFB700; }
    #root-menu li:nth-child(9) { border-left: none !important; border-right: 5px solid #8C2242; }
    #root-menu li:nth-child(10) { border-left: none !important; border-right: 5px solid #AE6337; }
    
    #menu-logo {
        height: 7rem;
        float: left;
        margin-top: 1rem;
        display: block;
    }

    #box-app-home {
        display: none;
    }

    #box-banners-home {
        max-width: 100% !important;
    }

    #box-players-home h4, #box-noticias-home h4 {
        font-family: "Outfit", serif;
        color: #e9bf18;
        background-color: white;
        font-size: 1.8rem;
        font-weight: bold;
        margin-top: -2rem;
        padding: 0 1vw;
        border-radius: 10px;
    }
    #box-players-home, #box-noticias-home {
        background-color: white;
        margin: 3rem 0;
        border-radius: 10px;
        padding: 1vw;
    }
    .station-menu {
        width: 85vw;
        height: 5rem;
        border-radius: 15px;
        background-color: crimson;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1rem .7vw;
        position: relative;
    }
    .station-menu img {
        width: inherit;
        max-width: 2rem;
        transform: translateY(20px);
        vertical-align: unset;
        position: absolute;
        left: 10%;
        top: -2rem;
    }
    .station-menu p {
        position: absolute;
        bottom: -.5rem;
        font-weight: bold;
        left: 10%;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: .9rem;
    }
    .rds-parent h6 {
        max-width: 70%;
        font-size: 1rem;
        font-weight: bold;
        padding: 5px;
        padding-right: 10px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        color: white;
    }
    #box-noticias-home a, #content-noticias a {
        text-decoration: none;
        font-family: "Outfit", serif;
        color: #50085D;
        transition: all .1s ease-in-out;
        font-size: 1.5em;
        line-height: normal;
    }
    #home-noticias-leia-mais a {
        color: white !important;
        font-weight: bold;
        font-size: 1.5rem;
    }
    #banner-promos h4 {
        font-family: "Outfit", serif;
        color: #e9bf18;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 4vw;
    }
    .form-music {
        width: 60%;
        border-radius: 20px;
        border: none;
        background-color: #eeeeee;
        font-size: 1.2rem;
        padding: 5px 0 5px 30px;
        color: #606060;
        margin: 1rem;
    }
    .modal-dialog {
        max-width: 100% !important;
    }

    #content-videos figure {
        max-width: 100%;
        margin: 0 10px;
    }

    .evento-icone img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin-top: 3rem;
    }

    #content-contato {
        padding: 3rem;
    }

    #footer-logo {
        height: 6rem;
        margin: 2vw 0;
    }
    #footer-social-icons i {
        font-size: 2rem;
        margin: 1rem;
        color: #606060;
        transition: all .1s ease-in-out;
    }
    #home-noticias-leia-mais {
        background-color: #50085D;
        padding: 1vw 5vw;
        margin: auto;
        margin-top: 3vw;
        margin-bottom: 5vw;
        border-radius: 10px !important;
    }

    #send_music { 
        margin: 10vw 0;
    }
}