@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --blue: #005296;
    --mediumblue: #18a8fb;
    --lightBlue: #BFD3E4;
    --yellow: #F7C200;
    --white: #ffffff;
    --black: #000000;
    --gray: #C4C4C4;
    --purple: #3F148D;
}

* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    list-style: none;
    box-sizing: border-box;
    transition-property: all;
    transition-duration: 0.25s;
    scroll-behavior: smooth;
}

section:first-of-type {
    background-color: var(--blue);
}

section:first-of-type > div {
    max-width: 1440px;
    margin: auto;
    padding: 96px 135px 96px 135px;
}

section:first-of-type > div > h2 {
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--yellow);
}

section:first-of-type > div > h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--white);
}

@media (max-width: 1023px) {
    section:first-of-type > div {
        padding: 48px 24px 48px 24px;
    }
}

/* Live */

main {
    max-width: 1440px;
    margin: auto;
    padding: 96px 135px 48px 135px;
}

iframe {
    width: 100%;
    height: 630px;
}

main > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 16px;
}

main > div > h1 {
    font-size: 1.5rem;
}

main > div > p {
    color: var(--yellow);
}

main > p {
    text-align: justify;
}

@media (max-width: 1023px) {
    main {
        padding: 48px 24px 48px 24px;
    }    
}

@media (max-width: 767px) {
    main > div {
        flex-direction: column;
    }

    iframe {
        height: 315px;
    }
}

/* Ultimas Lives */

section:last-of-type {
    max-width: 1440px;
    margin: auto;
    padding: 48px 135px 48px 135px;
}

section:last-of-type > h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 48px;
}

section:last-of-type > div {
    display: flex;
    gap: 0 24px;
}

section:last-of-type > div > div {
    width: 33.3%;
}

section:last-of-type > div > div > iframe {
   
   height: 200px;
}

section:last-of-type > div > div > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

section:last-of-type > div > div > div > h1 {
    font-size: 1.125rem; 
}

section:last-of-type > div > div > div > p {
    color: var(--yellow);
}

@media (max-width: 1023px) {
    section:last-of-type {
        padding: 48px 24px 48px 24px;
    }    
}

@media (max-width: 767px) {
    section:last-of-type > div {
        flex-direction: column;
        gap: 48px 0;
    }
    
    section:last-of-type > div > div {
        width: 100%;
    }

    section:last-of-type > div > div > iframe {
        height: 250px;
     }
}
