@charset "utf-8";
/* CSS Document */

:root{
    --dark-color: rgb(12, 14, 18);
    --dark-color-transparent: rgba(12, 14, 18, .5);
    --grey-color: #444444;
    --silver-color: #E7E7E7;
    --white-color: #ffffff;
    --white-transparent-color: rgba(255, 255, 255, 0.7);
    --golden-color: #ffc811;
}

/*
=============================
Styles for slider in header.
=============================
*/

/**{
    border: 1px solid red ;
}*/

/* Loader */

.loader__container{
    background-color: var(--dark-color);
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: all 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    font-size: 2rem;
    color: var(--golden-color);
    box-sizing: border-box;
    animation: rotation 2.5s linear infinite;
}

@keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
} 

/* Scroll */

html{
    scroll-behavior: smooth;
}

/* Header */

header{
    background-color: var(--dark-color);
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* Header navigation */

header .navigation{
    width: 100%;
    height: 170px;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 5fr;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

header .navigation .logo{
    width: 100%;
    height: 100%;
}

header .navigation .logo picture{
    display: block;
    width: 100%;
    position: relative;
}

header .navigation .logo picture img{
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
}

header .navigation .container__links{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    align-items: center;
}

header .navigation ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    gap: 2rem;
}

header .navigation ul li{
    list-style: none;
}

header .navigation ul li a{
    font-weight: bold;
    text-decoration: none;
    color: var(--white-color);
    transition: all ease-in-out .3s;
}

header .navigation ul li a:hover{
    color: var(--white-transparent-color);
    transition: all ease-in-out .3s;
}

.show__menu{
    display: none;
}

.hidden__menu{
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all ease-in-out .3s;
}

.hidden__menu:hover{
    color: var(--white-transparent-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all ease-in-out .3s;
}

.title__first, .title__second{
    color: var(--golden-color);
    font-size: 50px;
    font-weight: bold;
}

.container__text p{
    color: var(--white-color);
    font-size: 20px;
    font-weight: lighter;
}

.title__second{
    display: none;
}

/* Header content */

.content{
    width: 100%;
    height: calc(100% - 470px);
    display: grid;
    max-width: 1300px;
    margin: auto;
    grid-template-columns: 2fr 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
}

.container__text{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container__stream{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play__and__pause{
    background-color: var(--dark-color);
    box-shadow: 0 0 17px var(--golden-color);
    border-radius: 50px;
    width: 200px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 2rem;
    position: relative;
}

.live__text{
    color: var(--white-color);
    font-weight: bold;
}

.icons{
    background-color: var(--golden-color);
    color: var(--white-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -10px;
    font-size: 1.7rem;
}

.icons span{
    cursor: pointer;
}

/* Slider */

.container__slider{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
}

.container__slider .content__slider{
    width: 1000px;
    max-width: 1000px;
    height: 100%;
    background-color: var(--dark-color-transparent);
    position: relative;
    overflow: hidden;
}

.slider{
    display: flex;
    width: 500%;
    height: 100%;
}

.slider__section{
    width: 100%;
}

.slider__img{
    display: block;
    width: 100%;
    height: 100%;
}

.slider__btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-transparent-color);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__btn:hover{
    cursor: pointer;
    color: var(--white-color);
    transition: all ease-in-out .5s;
}

.slider__btn--right{
    right: 10px;
}

.slider__btn--left{
    left: 10px;
}

/*
=============================
Styles for content main.
=============================
*/

/* About */

main{
    width: 100%;
    height: auto;
}

.normal__text{
    padding-top: 1rem;
    padding-bottom: 1rem;
    line-height: 1.7rem;
    color: var(--dark-color);
}

.title{
    font-size: 40px;
    color: var(--golden-color);
}

.container__about{
    width: 100%;
    height: auto;
}

.content__about{
    width: 100%;
    height: auto;
    padding: 2rem;
    max-width: 1300px;
    margin: auto;
}

.about{
    width: 100%;
    height: auto;
    text-align: center;
    line-height: normal;
}

.about__icons{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.about__icons div{
    margin: auto;
    width: 150px;
    height: 150px;
    color: var(--white-color);
    border-radius: 50%;
    border: 1px solid var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.about__icons div span{
    font-size: 40px;
    color: var(--golden-color);
}

#icon-music{
    font-size: 30px;
}

.about__icons div h4{
    color: var(--golden-color);
    padding: 10px;
}

/* Services */

.container__services{
    width: 100%;
    height: auto;
    background-color: var(--dark-color);
}

.content__services{
    width: 100%;
    height: auto;
    padding: 2rem;
    max-width: 1300px;
    margin: auto;
}

.services{
    width: 100%;
    height: auto;
    text-align: left;
    line-height: normal;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.services p{
    color: var(--white-color);
}

.icons__services{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    
}

.icons__services article{
    width: 100%;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.icons__services article span{
    font-size: 50px;
    color: var(--white-color);
}

.icons__services article p{
    color: var(--white-color);
}

/* Network */

.container__network{
    padding: 2rem;
    text-align: center;
    line-height: normal;
}

.content__network{
    width: 100%;
    height: auto;
    max-width: 1300px;
    margin: auto;
}

.icons__network{
    padding-top: 2rem;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.icons__network .net{
    width: 100%;
    height: auto;
}

.net picture {
    display: block;
    width: 70px;
    height: 70px;
    margin: auto;
}

.net picture img{
    width: 100%;
    height: 100%;
}

#you-tube{
    grid-column-start: 1;
    grid-column-end: 5;
}

#you-tube picture{
    width: 250px;
    height: auto;
}

/* Programs */

.container__programs{
    width: 100%;
    height: auto;
    background-color: var(--dark-color);
}

.content__programs{
    width: 100%;
    height: auto;
    padding: 2rem;
    max-width: 1300px;
    margin: auto;
}

.programs{
    width: 100%;
    height: auto;
    text-align: left;
    line-height: normal;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.programs p{
    color: var(--white-color);
}

.icons__programs{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    
}

.icons__programs article{
    width: 100%;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.icons__programs article span{
    font-size: 50px;
    color: var(--white-color);
}

.icons__programs article p{
    color: var(--white-color);
}

.play__webhostapp{
    width: 100%;
    height: 400px;
}

.play__webhostapp iframe{
    width: 100%;
    height: 100%;
}

/* Locutor */

.container__locutor{
    width: 100%;
    height: auto;
}

.container__locutor .title{
    text-align: center;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.container__locutor figure{
    width: 100%;
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.container__locutor figure img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.container__locutor h4{
    text-align: center;
    line-height: 1.7rem;
}

.container__locutor p{
    text-align: center;
    padding-bottom: 2rem;
    line-height: 1.7rem;
}

/* Contact */

.container__contact{
    width: 100%;
    height: auto;
    background-color: var(--dark-color);
}

.content__contact{
    width: 100%;
    height: auto;
    padding: 2rem;
    max-width: 1300px;
    margin: auto;
}

.contact{
    width: 100%;
    height: auto;
    text-align: left;
    line-height: normal;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.contact p{
    color: var(--white-color);
}

.contact__data{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    padding-top: 2rem;
}

.contact__data article{
    width: 100%;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    align-items: center;
}

.contact__data article picture{
    width: 40px;
    height: 40px;
    display: block;
    color: var(--white-color);
}

.contact__data article picture img{
    width: 100%;
    height: 100%;
}

#e-mail picture{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

#e-mail picture img{
    width: 40px;
    height: 35px;
}

.contact__data article p{
    color: var(--white-color);
}

/* Location */

.container__location{
    width: 100%;
    height: auto;
}

.container__location .title{
    text-align: center;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.container__location p{
    text-align: center;
    padding-bottom: 2rem;
    line-height: 1.7rem;
}

.content__location{
    width: 100%;
    height: auto;
}

.location{
    width: 100%;
}

.map{
    width: 100%;
    height: 400px;
}

.map figure{
    display: block;
    width: 100%;
    height: 100%;
}

.map figure iframe{
    width: 100%;
    height: 100%;
}

/* Whatsapp */

.link__whatsapp__container{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    animation-name: animate-logo;
    animation-duration: .4s;
    z-index: 5;
}

@keyframes animate-logo{
    0%{
        transform: scale(1,1);
    }

    50%{
        transform: scale(1.7, 1.7);
    }

    100%{
        transform: scale(1,1);
    }
}

.figure__whatsapp{
    width: 100%;
    height: 100%;
}

.logo__whatsapp{
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Footer */

footer{
    width: 100%;
    height: auto;
    position: relative;
    background-color: var(--dark-color);
}

.container__footer{
    width: 100%;
    height: 100%;
    padding: 2rem;
    max-width: 1300px;
    margin: auto;
}

.container__footer .content__data{
    width: 100%;
    height: auto;
    max-width: 1700px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.container__footer .institution{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    color: var(--white-color);
}

.container__footer .institution .logo{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container__footer .institution .logo picture{
    height: auto;
    position: relative;
}

.container__footer .institution .logo picture img{
    width: 100px;
    height: auto;
}

.container__footer .institution .logo p{
    padding-top: 1rem;
    color: var(--white-color);
    line-height: 1.5rem;
}

.container__footer .institution h3{
    color: var(--white-color);
}

.container__footer .institution .logo img{
    width: 100px;
    height: 100px;
}

/* Right and developer */

.right__and__developer{
    width: 100%;
    max-width: 1700px;
    margin: auto;
    color: var(--white-color);
    padding-top: 2rem;
}

.right__and__developer p{
    line-height: 1.5rem;
}

.right__and__developer p a{
    color: var(--white-color);
    font-weight: bold;
    text-decoration: none;
}

/*
=============================
Media query for viewport.
=============================
*/

@media (max-width: 872px) {
    .container__slider{
        width: 100%;
        height: 250px;
        position: absolute;
        bottom: 0;
    }

    .content__slider{
        width: 100%;
        height: 100%;
    }


}

@media (max-width: 872px) {
    header .navigation{
        width: 100%;
        height: 100px;
        position: absolute;
        top: 0;
        z-index: 3;
        display: grid;
        grid-template-columns: 1.3fr 4.7fr;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
    }

    header .navigation .hidden{
        position: absolute;
        left: 0;
        top: -100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: var(--dark-color);
        width: 100%;
        height: 0;
        gap: 1rem;
        padding: 2rem;
        transition: all ease-in-out .5s;
    }

    .show__menu{
        display: block;
        color: var(--white-color);
        font-size: 2rem;
        cursor: pointer;
        transition: all ease-in-out .3s;
    }

    .show__menu:hover{
        color: var(--white-transparent-color);
        transition: all ease-in-out .3s;
    }

    .hidden__menu:hover{
        color: var(--white-transparent-color);
        cursor: pointer;
        transition: all ease-in-out .3s;
    }

    .below{
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: calc(70px * 4);
        background-color: var(--dark-color);
        gap: 1rem;
        padding: 2rem;
        transition: all ease-in-out .5s;
    }

    .content{
        margin-top: 170px;
    }
}

@media (max-width: 818px) {
    .content{
        grid-template-columns: 1fr;
    }

    .container__stream{
        height: 100px;
    }

    .title__first{
        text-align: center;
    }
    .container__text p{
        text-align: center;
    }
}

@media (max-width: 700px) {
    .container__slider{
        height: 270px;
    }
}

@media (max-width: 600px) {
    .about__icons{
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container__slider{
        height: 250px;
    }

    .content{
        width: 100%;
        height: calc(100% - 430px);
    }
}

@media (max-width: 540px) {
    .title__first{
        display: none;
    }

    .title__second{
        display: block;
        text-align: center;
    }

    .container__slider{
        height: 230px;
    }
}

@media (max-width: 490px) {
    .container__slider{
        height: 200px;
    }

    .content{
        width: 100%;
        height: calc(100% - 400px);
    }
}

@media (max-width: 460px) {
    .icons__network{
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    #x{
        width: 100%;
        grid-column-start: 1;
        grid-column-end: 4;
        margin: auto;
    }

    #you-tube{
        width: 300px;
        grid-column-start: 1;
        grid-column-end: 4;
        margin: auto;
    }

    .container__slider{
        height: 170px;
    }
}

@media (max-width: 450px) {
    .title__second{
        font-size: 40px;
    }

    .container__text p{
        color: var(--white-color);
        font-size: 17px;
    }

    .icons__network{
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    #tiktok{
        width: 100%;
        grid-column-start: 1;
        grid-column-end: 2;
        margin: auto;
    }

    #x{
        width: 100%;
        grid-column-start: 2;
        grid-column-end: 3;
        margin: auto;
    }

    #you-tube{
        width: 100%;
        grid-column-start: 1;
        grid-column-end: 3;
        margin: auto;
    }

    .content{
        width: 100%;
        height: calc(100% - 350px);
    }
}

@media (max-width: 370px) {
    .title__second{
        font-size: 30px;
    }

    .container__text p{
        color: var(--white-color);
        font-size: 15px;
    }

    #you-tube picture{
        width: 220px;
        height: auto;
    }

    .container__slider{
        height: 150px;
    }

    .content{
        width: 100%;
        height: calc(100% - 300px);
    }
}