header {
    width: 100%;
    max-width: 1200px;

    display: flex;
    flex-direction: column;
}

header .banner {
    padding: 2rem;
    width: 100%;
}

header .banner img {
    width: 100%;
}

header .route {
    padding: 2rem;
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

header .go_back a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

header .go_back a:hover {
    opacity: 0.8;
}

header .go_back a i {
    font-size: 1.3rem;
    margin-top: 0.4rem;
}

header .path {
    padding-left: 1rem;
}

header .path a {
    text-decoration: none;
}

header .path a:hover {
    text-decoration: underline;
}

header .path span.selected {
    color: var(--primary);
}

section.main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 2rem;
}

section.main > * {
    margin: 2rem;
}

section.main .text {
    display: flex;
    flex-direction: column;
    width: 65%;
}

section.main .text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

section.main .text .description > * {
    text-align: justify;
    font-size: 1rem;
    margin: 3rem 0;
    width: 100%;
}

section.main .text .buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

section.main .text .buttons button.primary {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

section.main .text .contact_us {
    margin-top: 1rem;
    padding: 0.6rem 2rem;
    border: 1px solid var(--dark);
    background-color: var(--white);
    border-radius: 30rem;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

section.main .text .contact_us:not(:first-child) {
    margin-left: 1rem;
}

section.main .text .contact_us:hover {
    transform: scale(1.05);
}

section.main .table {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1rem 0;

    width: 100%;
    max-width: 32rem;
}

section.main .table h1 {
    margin: 1rem 0;
    text-transform: uppercase;
    color: var(--dark);
    font-size: 1rem;
}

section.main .table .table_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

section.main .table .table_content .row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0.75rem 0;
}

section.main .table .table_content .row span:first-child {
    width: 50%;
}

section.main .table .table_content .row i {
    color: var(--stars);
    font-size: 0.8rem;
}

section.main .table .table_content .row i.checked {
    color: var(--dark);
}

section.main .table .table_content .row::before {
    content: "";
    border-top: 2px solid var(--dark);
    width: 100%;
    position: absolute;
    top: -0.75rem;
    left: 0;
}

section.main .table .table_content .row:last-child::after {
    content: "";
    border-bottom: 2px solid var(--dark);
    width: 100%;
    position: absolute;
    bottom: -0.75rem;
    left: 0;
}

.suggestions {
    width: 100%;
    max-width: 15rem;
    margin-top: 7rem !important;
}

.suggestion {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;

    transition: 0.3s ease-in-out;
}

.suggestion {
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.suggestion:hover {
    opacity: 0.6;
}

.suggestion img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.suggestion span:first-child {
    font-weight: 600;
}

.suggestion span:last-child {
    font-weight: 600;
    color: var(--dark);
}

section.sub_footer {
    padding: 2rem;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;

    background: var(--gray);
    width: 100%;
    position: relative;
    overflow: hidden;
}

section.protagonists {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background: var(--white);
    width: 100%;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

section.protagonists h1 {
    font-weight: 800;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

section.protagonists h1 i {
    margin-left: .5rem;
    transform: rotate(45deg);
    color: var(--leadership-forum);
}

.facilitadores, .convidados {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.facilitadores .facilitador, .convidados .convidado {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.facilitadores .facilitador > *, .convidados .convidado > * {
    margin: 0 2rem;
}

.facilitadores .facilitador:not(:first-child), .convidados .convidado:not(:first-child) {
    margin-top: 4rem;
}

.facilitadores .facilitador:nth-child(even), .convidados .convidado:nth-child(even) {
    flex-direction: row-reverse;
}

.facilitadores .facilitador .image, .convidados .convidado .image {
    width: 100%;
    max-width: 17rem;
}

.facilitadores .facilitador .image img, .convidados .convidado .image img {
    width: 100%;
    filter: grayscale(1)
}

.facilitadores .facilitador .text, .convidados .convidado .text {
    width: 100%;
    max-width: 37rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: justify;
}

.facilitadores .facilitador .text h2, .convidados .convidado .text h2 {
    margin-bottom: .5rem;
}

.facilitadores .facilitador .text h3, .convidados .convidado .text h3 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.line {
    width: 100%;
    border-top: 1px solid var(--primary-text);
    margin: 4rem 0;
}

section.sub_footer span {
    padding: 2rem;
    width: 100%;
    max-width: 60rem;
}

section.sub_footer img {
    position: absolute;
    right: 1%;
    height: 80%;
}

section.final_text {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.final_text h1 {
    color: var(--white);
    font-size: 1.7rem;
}

section.final_text > * {
    margin: 1rem 0;
}

section.final_text button {
    padding: .9rem 2.8rem;
    border: 1px solid var(--dark);
    background-color: var(--dark);
    border-radius: 30rem;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    color: var(--white);
    font-size: 0.95rem;
}

section.final_text button:hover {
    transform: scale(1.05);
}


.tab_box {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid #000;
    position: relative;
}

.tab_box .tab_btn {
    font-size: 1.25rem;
    color: #000;
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

.tab_box .tab_btn.active {
    color: var(--primary);
}

.content_box .content-item {
    display: none;
    animation: moving .5s ease;
}

@keyframes moving {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0px);
        opacity: 1;
    }
}

.content_box .content-item.active {
    display: block;
}

.line-tab-box {
    position: absolute;
    top: 38px;
    left: 0;
    width: 33.333333%;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}

.calendar {
    padding: 20px 0;
}

.event {
    margin-bottom: 20px;
}

.event h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
}

.event-details {
    display: flex;
    align-items: center;
    background-color: #F3F3F3;
    height: 6rem;
}

.event-date {
    background-color: #A1C5A9;
    height: 100%;
    width: 130px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-date .date {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.event-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-height: 6rem;
    height: 100%
}

.event-img {
    max-height: 6rem;
    height: 50%
}

.event-img img {
    max-height: 100%
}

.event-icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 6rem;
    width: 12rem;
}

.event-icons .localizacao, .hotel {
    display: flex;
    align-items: center;
    height: 1.75rem;
}

.event-icons img {
    height: 100%;
    width: auto;
    margin-right: 0.25rem;
}

.event-icons span {
    font-size: 14px;
    font-weight: medium;
    color: #000;
}

.calendar hr {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.status {
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
}

.sold-out {
    color: #d9534f;
}

.event-info a {
    color: #5cb85c;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.available {
    border: 1px solid #5cb85c;
    cursor: pointer;
    border-radius: 2px;
}

.event-info a:hover {
    transform: scale(1.05);
    color: #fff;
}

.available:hover {
    background-color: #5cb85c;
}

.experience img {
    width: 100%;
    margin-top: 2rem;
}

.experience > h2 {
    margin: 2rem 0;
}

@media only screen and (max-width: 1024px) {
    .suggestions {
        margin-top: inherit !important;
    }

    .status {
        font-size: 12px;
        font-weight: bold;
        padding: 10px;
    }
}

@media only screen and (max-width: 768px) {
    header .banner {
        padding: 2rem 0;
        width: 100%;
    }

    section.main .text {
        width: 100%;
    }


    section.main .text .buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }

    section.main .text .contact_us {
        width: 100%;
    }

    section.main .text .contact_us:not(:first-child) {
        margin-left: 0;
    }


    .facilitadores .facilitador .text, .convidados .convidado .text {
        margin: 1rem;
    }

    .tab_box .tab_btn {
        font-size: 1rem;
        color: #000;
        background: none;
        border: none;
        padding: 0.25rem;
        cursor: pointer;
    }

    .line-tab-box {
        position: absolute;
        top: 32px;
        left: 0;
        width: 33.333333%;
        height: 2px;
        background-color: var(--primary);
        transition: all 0.3s ease-in-out;
    }

    .event-details {
        display: flex;
        align-items: center;
        background-color: #F3F3F3;
        height: 4rem;
    }

    .event-date {
        background-color: #A1C5A9;
        height: 100%;
        width: 90px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .event-date .date {
        font-size: 15px;
        font-weight: bold;
        color: #fff;
    }

    .event-info {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        max-height: 4rem;
        height: 100%
    }

    .event-img {
        max-height: 4rem;
        height: 25%
    }

    .event-img img {
        max-height: 100%
    }

    .event-icons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-height: 5rem;
        width: 4rem;
    }

    .event-icons .localizacao, .hotel {
        display: flex;
        align-items: center;
        height: 1rem;
    }

    .event-icons img {
        height: 100%;
        width: auto;
    }

    .event-icons span {
        font-weight: medium;
        color: #000;
        font-size: 6px;
    }

    .calendar hr {
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .status {
        font-size: 9px;
        font-weight: bold;
        padding: 5px;
    }

    .sold-out {
        color: #d9534f;
    }

    .event-info a {
        color: #5cb85c;
        text-decoration: none;
        transition: transform 0.3s ease-in-out;
    }

    .available {
        border: 1px solid #5cb85c;
        cursor: pointer;
        border-radius: 2px;
    }

    .event-info a:hover {
        transform: scale(1.05);
        color: #fff;
    }

    .available:hover {
        background-color: #5cb85c;
    }
}