
.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;
}

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

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

.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);
}

.card {
  border-radius: 15px;
  transition: transform 0.2s ease;
  background-color: var(--cor-site-6) !important;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.card-body {
  text-align: left;
}

.card-body > p > strong {
  color: var(--cor-site-4);
  font-weight: 600;
  padding-bottom: 10px;
}

.card-icon {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 3px solid #f0f0f0; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

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