nav {
    background-color: #101820;
}

#footer {
    background-color: #FF9E18;
}

/* components css */

/* Estilos header titulos */
.pages-header {
    height: 84vh;
}

.pages-header img {
    width: 100%;
}

.pages-titles-container {
    margin-top: -60px;
    padding: 0 80px 0 80px;
}

.pages-titles-container h1 {
    font-family: 'Diagramm';
    font-size: 60px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    color: #F6F5E6;
    margin-bottom: 66px;
}

.pages-titles-container h3 {
    font-family: 'Diagramm';
    font-size: 35px;
    font-weight: 500;
    color: #101820;
}

@media screen and (max-width: 480px) {
    .pages-header {
        height: auto;
    }

    .pages-titles-container {
        margin-top: -34px;
        padding: 0 24px 120px;
    }

    .pages-titles-container h1 {
        font-size: 36px;
        line-height: 1;
    }

    .pages-titles-container h3 {
        font-size: 22px;
        line-height: 1;
    }
}

@media screen and (min-width: 1600px) {
    .pages-titles-container {
        margin-top: -80px;
        padding: 0 117px 0 117px;
    }

    .pages-titles-container h1 {
        font-size: 80px
    }

    .pages-titles-container h3 {
        font-size: 48px;
    }
}

/* carrossel2 final */
.events-container {
    display: flex;
    position: relative;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 140px;
}

.events-container .left-arrow {
    position: absolute;
    top: 41%;
    left: 64px;
    cursor: pointer;
    z-index: 2;
}

.events-container .right-arrow {
    position: absolute;
    top: 41%;
    right: 64px;
    transform: rotate(180deg);
    cursor: pointer;
    z-index: 2;
}

.events-scroller {
    display: flex;
    gap: 24px;
    cursor: grab;
    align-items: center;
    transition: transform 0.5s ease;
}

.event-card {
    display: flex;
    height: 400px;
    min-height: 400px;
    width: 400px;
    min-width: 400px;
    align-items: flex-end;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    padding: 8px;
    gap: 18px;
    transition: transform 0.3s ease;
}

.event-card.active {
    min-width: 440px;
    min-height: 440px;
}

@media screen and (max-width: 480px) {
    .events-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .event-card {
        width: 260px;
        min-width: 260px;
        height: 260px;
        min-height: 260px;
        gap: 8px;
    }

    .event-card.active {
        width: 280px;
        min-width: 280px;
        height: 280px;
        min-height: 280px;
    }
}

@media screen and (min-width: 1600px) {
    .event-card {
        height: 548px;
        min-height: 548px;
        width: 548px;
        min-width: 548px;
    }

    .event-card.active {
        width: 600px;
        min-width: 600px;
        height: 600px;
        min-height: 600px;
    }
}

/* agenda css */
p,
h1,
h2,
h3 {
    margin: 0;
}

* {
    box-sizing: border-box;
}

/* Fonts */

body {
    font-family: 'Diagramm';
    margin: 0;
    padding: 0;
    background-color: #F6F5E6;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    width: 100vw;
    margin-top: 110px;
}

html {
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    width: 100vw;
}

/* header section */
.pages-titles-container h1 {
    color: #FF5100;
}

.pages-titles-container h3 {
    color: #101820;
}

/* Upcoming events section */
.upcoming-events-container {
    padding: 80px;
    display: flex;
    gap: 24px;
}

.events-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    width: 50%;
    margin-top: -52px;
}

.event-card-small {
    width: 100%;
    border: 2px solid #101820;
    border-radius: 40px;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.event-card-small h2 {
    font-size: 28px;
    max-width: 90%;
    font-weight: 500;
    padding: 12px 0 0 12px;
}

.event-card-footer {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

p.event-date {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: #F6F5E6;
    font-size: 20px;
    text-transform: uppercase;
    padding: 3px 20px 0 20px;
    border-radius: 43px;
    border: 2px solid #101820;
}

.event-card-footer a {
    background-color: #101820;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.event-card-footer a img {
    width: 1.5em;
    height: 1.5em;
    margin-left: 3px;
    filter: brightness(100);
    transform: rotate(45deg);
}

.coming-up {
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 164px;
    height: 40px;
    border: 2px solid #101820;
    border-radius: 22px;
    font-size: 20px;
    padding: 5px 12px 5px 11px;
}

.featured-event-container {
    border-radius: 48px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.featured-event-container img {
    width: 100%;
    height: auto;
}

.logos-container {
    display: flex;
    gap: 24px;
}

.logos-container img {
    width: 100px;
}

.main-titles {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

span.line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: white;
}

.main-titles h2 {
    color: #F6F5E6;
    text-transform: uppercase;
    font-size: 71px;
    font-weight: 400;
    margin-top: 7px;
}

.main-titles p {
    color: #F6F5E6;
    font-size: 34px;
    font-weight: 200;
    opacity: 0.9;
}

.AE-logo {
    height: 120px;
    width: fit-content;
}

.date {
    align-self: flex-end;
    display: flex;
    height: -webkit-fill-available;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 100px;
    font-size: 20px;
    font-weight: 200;
    opacity: 0.9;
    text-transform: uppercase;
    color: #F6F5E6;
}

/* latest events section */
.latest-events-container {
    display: flex;
    flex-direction: column;
    padding: 54px 0 0;
    gap: 100px;
}

.title-line {
    margin: 0 80px 0 80px;
    border-radius: 51px;
    border: 3px solid #131820;
    display: flex;
    padding: 8px 26px 6px 26px;
    justify-content: flex-start;
    align-items: center;
    color: #F6F5E6;
    font-size: 28px;
    gap: 30px;
    text-transform: uppercase;
    color: #131820;
    font-weight: 200;
}

.title-line img {
    width: 200px;
}

.events-container {
    display: flex;
    position: relative;
    align-items: center;
    overflow: hidden;
}

.events-scroller {
    display: flex;
    gap: 24px;
    cursor: grab;
    align-items: center;
    transition: transform 0.5s ease;
}

.event-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    padding: 8px;
    gap: 18px;
}

.event-card p {
    flex-grow: 1;
    background-color: #F6F5E6;
    font-size: 28px;
    text-transform: uppercase;
    padding: 12px 24px 10px 24px;
    border-radius: 22px;
}

.event-card a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F6F5E6;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    min-width: 55px;
}

.event-card a img {
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
}

/* schedule section */
.schedule {
    width: fit-content;
    margin-left: auto;
    margin-right: 80px;
    margin-bottom: 200px;
    border-radius: 51px;
    display: flex;
    gap: 30px;
    padding: 8px 26px 6px 26px;
    justify-content: space-between;
    align-items: center;
    color: #0E1820;
    border: 2px solid #0E1820;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
}

.schedule img {
    width: 140px;
}



/* Responsive */



/* small laptop */

@media screen and (max-width: 1400px) {
    .main-titles h2 {
        font-size: 58px;
    }

    .main-titles p {
        font-size: 30px;
    }

    .date {
        padding-right: 12px;
    }
}

/* tablet */
@media screen and (max-width: 780px) {
    .upcoming-events-container {
        flex-direction: column-reverse;
    }

    .featured-event-container {
        width: 100%;
    }

    .events-list {
        margin-top: 0;
        width: 100%;
    }

    .schedule {
        margin-left: auto;
        margin-right: auto;
    }
}

/* mobile */
@media screen and (max-width: 480px) {
    body {
        margin-top: 90px;
    }

    .upcoming-events-container {
        padding: 40px 24px;
    }

    .logos-container img {
        width: 76px;
    }

    .logos-container {
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .main-titles {
        gap: 8px;
    }

    .main-titles h2 {
        font-size: 32px;
    }

    .main-titles p {
        font-size: 22px;
    }

    .AE-logo {
        height: 80px;
    }

    .date {
        font-size: 16px;
    }

    .featured-event-container {
        gap: 12px;
    }

    .title-line {
        margin: 0 24px;
        flex-direction: column;
        gap: 8px;
        padding: 12px 26px 10px 26px;
        font-size: 26px;
    }

    .title-line img {
        width: 90%;
    }

    .event-card {
        gap: 8px;
    }

    .event-card p {
        padding: 10px 14px 8px 14px;
        flex-grow: 0;
        font-size: 22px;
    }

    .event-card a {
        width: 45px;
        height: 45px;
    }

    .latest-events-container {
        gap: 52px;
        padding: 48px 0;
    }

    .schedule {
        flex-direction: column;
        margin-left: 24px;
        margin-right: 24px;
        margin-bottom: 200px;
        gap: 8px;
        padding: 12px 26px 10px 26px;
        text-align: center;
        font-size: 26px;
    }

    .schedule img {
        width: 90%;
    }
}

/* big screens */
@media screen and (min-width: 1600px) {

    .coming-up {
        width: 226px;
        height: 54px;
        font-size: 28px;
        padding: 6px 14px 5px 14px;
    }

    .event-card-small h2 {
        font-size: 38px;
    }

    p.event-date {
        font-size: 28px;
        padding: 3px 32px 0 32px;
    }

    .event-card-footer a {
        width: 54px;
        height: 54px;
    }

    .featured-event-container {
        gap: 52px;
    }

    span.line {
        height: 3px;
    }

    .main-titles h2 {
        font-size: 84px;
    }

    .main-titles p {
        font-size: 40px;
    }

    .date {
        font-size: 28px;
    }

    .title-line,
    .schedule {
        font-size: 38px;
    }

    .event-card p {
        font-size: 38px;
        border-radius: 43px;
        padding: 21px 30px 20px 30px;
    }

    .event-card a {
        width: 86px;
        height: 86px;
    }

    .event-card a img {
        width: 30px;
        height: 30px;
    }
}
