#marcas-mantenimiento {
    padding: 80px 20px;
    text-align: center;
}

.content-wrapper-motores{
    width: 80%;
    max-width: 90%;
    margin: 0 auto;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}



.marca-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center; /* Added for centering content */
}

.marca-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.marca-card img {
    height: 40px;
    margin: 20px auto;
}

.marca-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.marca-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Estilos para destacar LiftRanger de forma sutil y premium */
.marca-card.marca-propia {
    background-color: #ffffff; /* Fondo neutro como las otras cards */
    /* El 'resplandor incierto' con un box-shadow sutil */
    box-shadow: 0 0 25px 5px rgba(150, 150, 150, 0.3);
    transform: scale(1.02); /* Un ligero crecimiento para atraer la vista */
}

.marca-card.marca-propia:hover {
    transform: scale(1.02) translateY(-5px); /* Mantenemos el hover pero ajustado al nuevo scale */
    box-shadow: 0 5px 30px 8px rgba(150, 150, 150, 0.4);
}

.marca-card.lift-ranger h3 {
    color: #111827;
}

.marca-card.lift-ranger p {
    color: #4b5563;
}

.marca-card.lift-ranger .highlight {
    color: #111827;
    font-weight: 600;
}

/* Estilo para el texto 'EL MÁS VELOZ' dentro de la card */
.fastest-badge {
    display: block; /* Asegura que esté en su propia línea */
    font-size: 0.8rem;
    font-weight: 700;
    color: #c00; /* Un rojo más oscuro y premium */
    margin-bottom: 10px; /* Espacio entre el badge y el párrafo */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.asesoria-cta {
    margin-top: 60px;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.asesoria-cta p {
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    line-height: 1.7;
}