﻿.sobre {
    display: flex;
    position: relative;
}

.retanguloAzul {
    position: absolute;
    z-index: -1;
    left: 0;
    background-color: #1f3156;
    width: 45vw;
    height: 100%;
}

.sobre-cards {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.sobre-tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
    max-width: 22.9375rem;
    width: 100%;
}

    .sobre-tile h2 {
        color: #fff;
        font-weight: 600;
        font-size: 2rem;
    }

    .sobre-tile p {
        font-size: 1.5rem;
        color: #e3e3e3;
        margin-top: 1.25rem;
        text-align: right;
    }

.sobre-cards-branco {
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    background-color: #fff;
    width: 100%;
    max-width: 49.5625rem;
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    padding: 4.75rem 2.5rem;
    border-radius: 1rem;
    margin: 3rem 0;
}

    .sobre-cards-branco span {
        color: #171717;
        font-size: 1.25rem;
    }

.timeline {
    margin: 7.5rem 0;
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
}

    .timeline h2 {
        font-family: Montserrat,sans-serif;
        font-weight: 600;
        font-size: 1.75rem;
        text-align: center;
    }

.timeline-area {
    margin-top: 3.75rem;
    display: flex;
    justify-content: space-around;
    gap: 13.75rem;
}

.timeline-lado-esquerdo {
    border-left: 2px solid #1f3156;
}

.timeline-trajetoria {
    position: relative;
    max-width: 22.5rem;
}

.timeline-indicador {
    background-color: #db4e0f;
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    margin-top: 0.5rem;
    position: absolute;
    left: -0.55rem;
    top: 2.8125rem;
    padding: 0.375rem;
    border: 2px solid #fff;
}

.timeline-bloco {
    max-width: 22.5rem;
    padding: 2.8125rem 0 0 1.375rem;
}

    .timeline-bloco h2 {
        font-family: Montserrat,sans-serif;
        font-weight: 600;
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 10px;
    }

    .timeline-bloco p {
        font-family: Maven Pro,sans-serif;
        font-size: 1.125rem;
    }

.atualmente {
    padding-top: 2rem;
}

.bloco-atualmente {
    background-color: #1f3156;
    padding: 0.875rem 0 0.875rem 1.625rem;
    margin: 0 0 0 1.375rem;
    border-radius: 0.5rem;
    position: relative;
    color: white !important;
}

    .bloco-atualmente::after {
        position: absolute;
        content: " ";
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #1f3156;
        transform: rotate(90deg);
        top: 1.8rem;
        left: -0.7rem;
    }

@media(max-width: 1280px) {
    .sobre-cards {
        max-width: 1140px;
        padding: 0 1rem;
    }

    .sobre-cards-branco span {
        font-size: 1.125rem;
    }

    .timeline-area {
        justify-content: center;
        gap: 5rem;
    }
}

@media(max-width: 1000px) {
    .sobre {
        flex-direction: column;
    }

    .retanguloAzul {
        width: 100vw;
        height: 50%;
    }

    .sobre-cards {
        flex-direction: column;
        align-items: center;
    }

    .sobre-tile {
        align-items: center;
        margin-top: 4rem;
    }

        .sobre-tile h2 {
            font-size: 1.5rem;
        }

        .sobre-tile p {
            font-size: 1.125rem;
            text-align: center;
        }

    .sobre-cards-branco {
        margin: 0;
    }

    .sobre-cards-branco {
        font-size: 1rem;
    }
}

@media(max-width: 880px) {
    .timeline {
        max-width: 640px;
    }

    .timeline-bloco h2,
    .sobre-cards-branco span {
        font-size: 1rem;
    }
}

@media(max-width: 680px) {
    .timeline-area {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }
}

@media(max-width: 480px) {
    .timeline {
        max-width: 320px;
    }
}