/* Estilo Base dos Cards */
.servico-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.servico-card.reverse { flex-direction: row-reverse; }

.servico-img { flex: 1; }
.servico-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.servico-info { flex: 1; }
.servico-info h3 { font-size: 2em; color: #FF6600; margin-bottom: 15px; }
.servico-info p { font-size: 1.1em; color: #444; line-height: 1.6; }

/* DESTAQUE FRETADO VALE */
.destaque-sp {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px 0;
    border-left: 10px solid #FF6600;
}

.sp-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sp-logo img {
    max-width: 250px;
    filter: drop-shadow(0 0 10px rgba(255,102,0,0.3));
}

.sp-texto h2 { color: #FF6600; font-size: 2.2em; margin-bottom: 10px; }
.sp-contato { margin-top: 25px; }

.btn-whatsapp-sp {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 10px;
    transition: transform 0.3s;
}

.btn-whatsapp-sp img { width: 25px; margin-right: 10px; }
.btn-whatsapp-sp:hover { transform: scale(1.05); background: #1ebd5e; }

@media (max-width: 768px) {
    .servico-card, .servico-card.reverse, .sp-container {
        flex-direction: column;
        text-align: center;
    }
}