.palavras-finais > p {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--cor-site-6);
    margin-top: 30px;
}

.about-company-section {
    position: relative;
    overflow: hidden;
}

.company-timeline {
    position: relative;
    margin: 30px auto;
    width: 100%;
    max-width: 200px;
}

.timeline-badge {
    display: inline-block;
    background-color: var(--cor-site-1);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cor-site-1), var(--cor-site-1), var(--cor-site-1), transparent);
    z-index: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hover-transform {
    transition: all 0.3s ease;
}

.hover-transform:hover {
    transform: translateY(-10px);
}

.hover-transform:hover .icon-box {
    background-color: var(--cor-site-1);
    color: white !important;
}

.company-image {
    flex: 1;               
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(1, 64, 24, 0.1);
}

.company-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(1, 64, 24, 0.15);
}

.company-image img {
    width: 100%;
    height: auto;
    display: block;
    border-left: 4px solid var(--cor-site-2);
    object-fit: cover;
    border-radius: 12px;
}

.card-body {
    border-top: 4px solid var(--cor-site-2);
    border-radius: 12px;
}

.card {
    border-radius: 15px;
}

.max-w-800 {
    max-width: 800px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mb-60 {
    margin-bottom: 60px;
}

.p-40 {
    padding: 40px;
}

.bg-site-1-10 {
    background-color: rgba(var(--cor-site-1-rgb), 0.1);
}

.icon-list i {
    font-size: 1.2rem;
}

.about-image {
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .py-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .ps-lg-40 {
        padding-left: 0 !important;
    }

    .company-image img {
        border-top: 4px solid var(--cor-site-2) !important;
        border-left: none !important;
    }

    .section-title {
        text-align: center;
    }

    h3.section-subtitle.animated.fadeIn {
        text-align: center;
        margin-bottom: 3px;
    }

    .section-divider {
        width: 80px;
        height: 3px;
        background: var(--cor-site-2);
        margin: 5px auto 15px auto;
        border-radius: 3px;
    }

    .section-paragraph {
        text-align: center;
    }

    .section-highlight {
        border-left: none !important;
        text-align: center;
    }
}