@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html{
    min-height: 100dvh;
    background-color: #e0f7fa;
    overflow-x: hidden;
    font-family: "Bebas Neue", sans-serif;
    & p,a{
        font-family: "Open Sans", sans-serif;
    }
    & strong {
        color: #FF6F00;
    }
}

main{
    box-shadow: 1px 1px 5px inset #000000;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0092A6;
    background-image: url("/assets/imagens/foto-medina-fundo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    & header{
        width: 100%;
        min-height: 110px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        & .logo{
            height: 65px;
        }
        & nav{
            width: 400px;
            display: flex;
            justify-content: space-between;
            padding: 10px;
            margin-right: 20px;
            & a{
                color: #fff;
                font-size: 20px;
                text-decoration: none;
                text-transform: none;
                font-weight: 300;
            }
            & a:hover{
                color: #ffffffb2;
                transform: scale(1.05);
                cursor: pointer;
            }
        }
    }
    & .caixa-central{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50dvh;
        width: 100dvw;
        & .frase-efeito{
            max-width: 50%;
        }
    }
}

section{
    min-height: 100dvh;
    background-image: linear-gradient(to bottom, #67848B, #65ECFD);
    box-shadow: 1px 1px 10px inset #67848bb0;
    & .secao-campeoes{
        color: #FFECB3;
        display: flex;
        flex-direction: column;
        align-items: center;
        & h1{
            font-size: 3em;
            margin: 50px;
        }
        & .aba-campeoes{
            display: flex;
            justify-content: space-evenly;
            flex-wrap: wrap;
            & .content-campeao{
                display: flex;
                justify-content: space-around;
                background-color: #FFECB3;
                margin: 10px;
                min-height: 280px;
                width: 40dvw;
                max-width: 550px;
                padding: 10px;
                color: #000;
                border-radius: 10px;
                & img{
                    min-width: 180px;
                    border-radius: 10px;
                }
                & article {
                    padding: 10px;
                    display: flex;
                    flex-direction: column;
                    & h4{
                        color: #FF6F00;
                        font-size: 20px;
                    }
                    & h5{
                        font-size: 18px;
                    }
                    & p{
                        font-size: 16px;
                        margin-top: 10px;
                        width: 230px;
                    }
                }
            }
        }
    }
    & .comece-hoje{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 30px;
        padding-bottom: 50px;
        color: #FFECB3;
        & h1{
            align-self: center;
            font-size: 3em;
            margin: 50px;
            margin-bottom: 20px;

        }
        & .convite{
            color: #FFECB3;
        }
        & .secao-iframe{
            display: flex;
            justify-content: space-between;
            width: 85dvw;
            & article{
                display: flex;
                flex-direction: column;
                max-width: 600px;
                align-items: center;
                & h3{
                    font-size: 2.2em;
                }
                & p{
                    font-size: 28px;
                    max-width: 450px;
                    margin-bottom: 20px;
                }
                & span{
                    display: flex;
                    align-items: center;
                    & img{
                        width: 100px;
                    }
                }
            }
        }
        & strong, h3{
            color: #FF6F00;
        }
        & h2{
            align-self: center;
            font-size: 2.5em;
            margin-bottom: 50px;
        }
    }
}

footer{
    background-color: #002922;
    color: #e0f7fa;
    display: flex;
    justify-content: space-between;
    min-height: 250px;
    padding: 30px;
    & div{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        & span{
            display: flex;
            align-items: center;
        }
        & a.link{
            color: #e0f7fa;
            text-decoration: none;
            text-transform: none;
            padding: 5px;
            font-weight: 700;
            width: 30ch;
            font-size: 16px;
        }
        a:hover{
            text-decoration: underline;
        }
    }
    & .aviso{
        text-align: justify;
        & img{
            width: 290px;
        }
    }
    & .creditos{
        text-align: center;
        & h6{
            font-size: 18px;
        }

    }
}
@media screen and (min-width: 1115px){
    main{
        background-attachment: fixed;
    }
    .secao-iframe article{
        text-align: justify;
    }
    footer div{
        width: 310px;
    }
    & .creditos span{
        width: 300px;
    }
}