/* components css */

/* tenxto info-boxes */
.info-boxes div p {
    font-family: 'SourceSansPro';
}

/* Estilos para as Cards de eventos */

.main-cards-container {
    display: flex;
    justify-content: center;
    gap: 28px 35px;
    width: 100%;
    flex-wrap: wrap;
    padding: 60px 60px 0;
}

.card-container {
    width: 48%;
    border: 3px solid #F6F5E6;
    border-radius: 40px;
    padding: 48px 21px 21px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    min-width: 380px;
    min-height: 280px;
}

.card-header {
    color: #F6F5E6;
    font-family: 'Diagramm';
    font-size: 49.5px;
    line-height: 48px;
    padding-left: 20px;
    padding-right: 16px;
    font-weight: 400;
    flex-grow: 2;
}

.card-footer-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.card-footer-tags {
    display: flex;
    gap: 16px;
    padding-bottom: 5px;
    flex-wrap: wrap;
    font-family: 'Diagramm';
}

.card-tag {
    font-size: 18px;
    line-height: 30px;
    border: 3px solid #F6F5E6;
    border-radius: 43px;
    color: #F6F5E6;
    text-align: center;
    min-width: 122px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    text-transform: uppercase;
}

.card-btn {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 54.5px;
    min-height: 54.5px;
    background-color: #F6F5E6;
}

.card-btn img {
    width: 50%;
    transform: rotate(45deg);
}

@media screen and (max-width: 1400px) {
    .card-header {
        font-size: 40px;
    }

    .card-tag {
        font-size: 16px;
    }
}

@media screen and (max-width: 1035px) {
    .main-cards-container {
        padding: 40px 40px 0;
    }

    .card-container {
        min-width: auto;
        width: 100%;
    }

    .card-header {
        font-size: 38px;
        line-height: 60px;
    }

    .card-tag {
        min-width: 141px;
        min-height: 57px;
        font-size: 16px;
    }
}

@media screen and (max-width: 475px) {
    .main-cards-container {
        padding: 24px;
    }

    .card-footer-container {
        justify-content: flex-end;
    }

    .card-tag {
        min-width: auto;
        min-height: auto;
        font-size: 12px;
    }

    .card-header {
        font-size: 33px;
        line-height: 45px;
    }
}

/* 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;
    max-width: 726px;
}

@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: 46%;
    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;
    }
}



/* srtt styles */ 

body {
    font-family: 'Diagramm';
    margin: 0;
    padding: 0;
    background-color: #101820;
    box-sizing: border-box;
    scroll-snap-type: y mandatory;
    margin-top: 110px;
}

/* footer edits */

#footer {
    background-color: #FF9E18;

}

/* header section */

.pages-titles-container h1 {
    color: #13B797;
}

.pages-titles-container h3 {
    color: #F6F5E6;
    max-width: 770px;
}

.pages-header img {
    width: 80%;
}

/* section info-boxes */

.info-boxes {
    display: flex;
    padding: 0 80px;
    gap: 30px;
}

.info-boxes div {
    background-color: #13B797;
    color: #101820;
    border-radius: 40px;
    padding: 48px 55px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: 290px;
}

.info-boxes div h2 {
    font-size: 36px;
}

.info-boxes div p {
    font-family: 'SourceSansPro';
    font-size: 24px;
    font-weight: 200;
    letter-spacing: -0.51px;
}

.info-boxes div p b {
    text-decoration: underline;
    font-weight: 400;
}
/* circle img */

.circle-img-container {
    padding: 140px 0 60px;
    display: flex;
}

.circle-img-container img {
    height: 110vh;
    margin-left: auto;
    margin-right: auto;
}

/* sections intro */

.sections-intro {
    padding: 60px 0 60px 120px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.sections-intro img {
    height: 118px;
    height: 88px;
}

.sections-intro h3 {
    color: #F6F5E6;
    font-size: 36px;
    margin-bottom: -15px;
    font-weight: 400;
}

/* section events */

.events-container {
    display: flex;
    position: relative;
    align-items: center;
    overflow: hidden;
}

.events-container .left-arrow {
    position: absolute;
    top: 50%;
    left: 64px;
    cursor: pointer;
    z-index: 2;
}

.events-container .right-arrow {
    position: absolute;
    top: 45%;
    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.event1 {
    background-image: url("../img/event1.png");
}

.event-card.event2 {
    background-image: url("../img/event2.png");
}

.event-card.event3 {
    background-image: url("../img/event3.png");
}

.event-card.event4 {
    background-image: url("../img/event4.png");
}

.event-card.event5 {
    background-image: url("../img/event5.png");
}

.event-card.event6 {
    background-image: url("../img/event6.png");
}


.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);
}

.main-cards-container {
    margin-bottom: 200px;
}

.events-container .right-arrow {
    top: 40%;
}

.events-container .left-arrow {
    top: 41%;
}



/* responsive */



/* tablet */

@media screen and (max-width: 780px) {
    .info-boxes {
        flex-direction: column;
    }

    .info-boxes div {
        width: 100%;
    }

    .circle-img-container img {
        height: 100vh;
        max-width: 100vw;
    }
}



/* mobile */

@media screen and (max-width: 480px) {
    body {
        margin-top: 90px;
    }

    .info-boxes {
        padding: 0 24px;
    }

    .info-boxes div {
        width: 100%;
        padding: 28px 32px 42px;
        min-height: auto;
    }

    .info-boxes div h2 {
        font-size: 32px;
    }

    .info-boxes div p {
        font-size: 20px;
    }

    .circle-img-container {
        padding: 100px 0 60px;
    }

    .circle-img-container img {
        height: auto;
        width: 100vw;
    }

    .sections-intro {
        padding: 24px;
    }

    .sections-intro img {
        height: 64px;
    }

    .sections-intro h3 {
        font-size: 30px;
    }

    .events-container {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .event-card {
        width: 260px;
        min-width: 260px;
        height: 260px;
        min-height: 260px;
        gap: 8px;
    }

    .event-card p {
        padding: 10px 14px 8px 14px;
        flex-grow: 0;
        font-size: 22px;
    }

    .event-card a {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
}



/* Big screens */

@media screen and (min-width: 1600px) {
    .info-boxes div h2 {
        font-size: 48px;
        font-weight: 300;
    }

    .pages-titles-container h3 {
        max-width: 965px;
    }
    .info-boxes div p {
        font-size: 34px;
    }

    .info-boxes div {
        min-height: 348px;
    }

    .sections-intro {
        gap: 52px;
    }

    .sections-intro img {
        height: 115px;
    }

    .sections-intro h3 {
        font-size: 48px;
        margin-bottom: -18px;
    }

    .event-card p {
        font-size: 38px;
        border-radius: 43px;
        padding: 21px 30px 20px 30px;
    }

    .event-card a {
        width: 86px;
        height: 86px;
        min-width: 86px;
    }

    .event-card a img {
        width: 30px;
        height: 30px;
    }
}
