.services {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;			
}

.services-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bmw-dark);
    position: relative;
    padding-bottom: 1.5rem;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--bmw-blue), #c00);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 177, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bmw-blue), #c00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 177, 0.15);
    border-color: rgba(0, 102, 177, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--bmw-blue);
    margin-bottom: 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #c00;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 177, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon::after {
    transform: scale(1.2);
    background: rgba(204, 0, 0, 0.1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bmw-dark);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--bmw-blue);
}

.service-description {
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    padding-top: 1rem;
}

.service-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(0, 102, 177, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-description::before {
    width: 60px;
    background: var(--bmw-blue);
}

/* RESPONSIVIDADE */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }   

}

@media (max-width: 768px) {    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {    
    .services {
        padding: 0 1rem;
    }
}	

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 14px 20px; /* padding reduzido */
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex; /* mudado para inline-flex */
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* width removido ou alterado */
    max-width: 300px; /* largura máxima */
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:active {
    transform: scale(0.98);
}

.whatsapp-btn i {
    font-size: 20px;
}    