
/* Main Content Section */
.main-content {
    display: flex;
    gap: 60px;
    padding: 40px 0;
    flex-wrap: wrap;
    align-items: flex-start;
}

.text-section {
    flex: 4;
    min-width: 300px;
}

.video-section {
    flex: 3;
    /* min-width: 400px; */
    background-color: #000;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 20px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.video-section video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    object-position: center;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.main-content .logo-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px;
}

.description p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}

.cta-button {
    display: flex;
    padding: 12px;
    background-color: #66cc33;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 50%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}

.cta-button:hover {
    background-color: #5aa62c;
}

.timeline-section {
    max-width: 1240px;
    position: relative;
    margin: 0 auto;
    /* overflow: hidden; */
}

.timeline-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #173f73;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.timeline-arrow:hover {
    background: #66cc33;
}

.timeline-arrow.left {
    left: -20px;
}

.timeline-arrow.right {
    right: -20px;
}

.timeline-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.timeline-cards::-webkit-scrollbar {
    display: none;
}



.timeline-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 20px;
    min-width: 300px;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
    scrollbar-width: none;
}

.timeline-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-card h3 {
    font-size: 16px;
    font-weight: 800;
}

.timeline-card p {
    font-size: 14px;
}

#concluido {
    background-color: #173f73;
    color: white;
}

#atual {
    background-color: #66cc33;
    color: rgb(0, 0, 0);
}

#previsto {
    background-color: #e6e6e6;
    color: rgb(0, 0, 0);
}

.timeline-card .time-mark {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: row;
    }

    nav {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .main-content {
        flex-direction: column;
        gap: 20px;
    }

    .text-section,
    .video-section {
        width: 100%;
        min-width: unset;
    }

    .video-section iframe {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
    }

    .timeline-cards {
        flex-direction: column;
        gap: 20px;
        cursor: default;
    }

    .timeline-cards.dragging {
        cursor: default;
        scroll-behavior: smooth;
    }

    .timeline-arrow{
        display: none; /* Hide arrows on mobile */
    }

}
