/* styles.css */
body {
    background-color: #ffffff;
}

.img_fluid {
    max-width: 50%;
    height: auto;
    display: block;
}





.bolinha {
    width: 50px;
    height: 50px;
    background-color: #f69142;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


.bg-blue {
    background-color: #023252;
    color: #f69142;
}

.bg-orange {
    color: #023252;
    background-color: #f69142;
}

h1 {
    color: #023252;
}


h3 {
    margin-top: 0;
    color: #023252;
    font-size: 35px;
    padding-bottom: 20px;
}



.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #f69142;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    margin: 0 0 20px 0;
    padding: 25px 25px;
    position: relative;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 25px;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f69142 transparent transparent;
    position: absolute;
    top: 20px;
    left: -10px;
}

.timeline-icon {
    background: #f69142;
    border: 5px solid #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.timeline-content {
    padding: 15px;
    padding-top: 40px;
    padding-bottom: 30px;
    background: #b7d6e6;
    border-radius: 25px;
}

.timeline h2 {
    margin-top: 0;
    color: #023252;
    font-size: 35px;
    padding-bottom: 20px;
}

.timeline p {
    margin-bottom: 0;
    color: #023252;
    font-size: 22px;
}

.timeline ul {
    margin-bottom: 0;
    margin-top: 20px;
    color: #023252;
    font-size: 22px;
}

.timeline li {
    margin-top: 20px;
}

.important-section {
    margin-top: 50px;
    width: 80%;
}

.important-item {
    background: #f9f9f9;
    border: 1px solid #f69142;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 20px;
}

.important-item h3 {
    color: #023252;
}



.important-item p {
    font-size: 18px; /* Reduces font size by 30% */
}


/* Media query for mobile devices */
@media (max-width: 768px) {
    
    
    .timeline-item {
        margin: 0 0 20px 0;
        padding: 25px 25px;
        position: relative;
        background: #ffffff;
        border: 1px solid #ffffff;
        border-radius: 25px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
    


    .important-section {
        margin-top: 50px;
        width: 90%;
    }
    
    
    h1 {
        font-size: 25px; /* Reduces font size by 30% */
    }

    .timeline h2 {
        font-size: 25px; /* Reduces font size by 30% */
    }



    .img_fluid {
        max-width: 100%;
        height: auto;
        display: block;
    }
    


    .timeline p,
    .timeline ul,
    .timeline li {
        font-size: 15px; /* Reduces font size by 30% */
    }

    .important-item h3 {
        font-size: 25px; /* Reduces font size by 30% */
    }

    .important-item p {
        font-size: 16px; /* Reduces font size by 30% */
    }
}
