/*ADICIONADO ESTILIZAÇÃO PARA A PÁGINA DE NOSSA EMPRESA*/

.projects-section {
    position: relative;
}

.project-card {
    transition: all 0.3s ease;
    height: 100%;
}

.hover-transform:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--cor-site-1);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cor-site-3);
}

.feature-item i {
    width: 20px;
    text-align: center;
}

.btn-outline-site-1 {
    border: 2px solid var(--cor-site-1);
    color: var(--cor-site-1);
    transition: all 0.3s ease;
}

.btn-outline-site-1:hover {
    background-color: var(--cor-site-1);
    color: white;
}

.btn-site-1 {
    background-color: var(--cor-site-1);
    color: white;
    transition: all 0.3s ease;
}

.btn-site-1:hover {
    background-color: var(--cor-site-2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.mt-50 {
    margin-top: 50px;
}

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

@media (max-width: 768px) {
    .py-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.call-to-action-6 {
    display: none !important;
}